-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "wordoclock",
"version": "1.0.0",
"description": "A clock that tells the time using quotes from literature. Support for multiple languages, themes, and more!",
"type": "module",
"scripts": {
"dev": "vite --open",
"build": "tsc & vite build",
"deploy": "npm run build",
"host": "vite --host",
"preview": "vite preview",
"test": "vitest --environment=jsdom",
"test:ci": "vitest run --environment=jsdom",
"lint": "eslint",
"lint:fix": "eslint --fix",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdmoro/wordoclock.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cdmoro/wordoclock/issues"
},
"homepage": "https://github.com/cdmoro/wordoclock#readme",
"devDependencies": {
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"husky": "^8.0.0",
"jsdom": "^24.0.0",
"prettier": "3.3.3",
"typescript": "^5.4.5",
"typescript-eslint": "^8.11.0",
"vite": "^5.2.11",
"vitest": "^1.6.0"
},
"dependencies": {
"html2canvas-pro": "^1.5.8",
"lunarphase-js": "^2.0.3"
}
}