-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "eternal-game",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"description": "_description_",
"author": "Kirk Lin <https://github.com/kirklin>",
"license": "MIT",
"funding": "https://www.buymeacoffee.com/linkirk",
"homepage": "https://github.com/kirklin/eternal-game#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kirklin/eternal-game.git"
},
"bugs": "https://github.com/kirklin/eternal-game/issues",
"keywords": [],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "nr build",
"release": "bumpp",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks",
"up": "taze major -r -w -I"
},
"dependencies": {
"@kirklin/reset-css": "^0.0.6",
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"kkplay": "^0.0.0"
},
"devDependencies": {
"@antfu/ni": "^0.21.12",
"@kirklin/eslint-config": "^2.5.0",
"@types/node": "^20.14.9",
"bumpp": "^9.4.1",
"eslint": "^9.6.0",
"lint-staged": "^15.2.7",
"pnpm": "^9.4.0",
"rimraf": "^5.0.7",
"simple-git-hooks": "^2.11.1",
"taze": "^0.13.9",
"terser": "^5.31.5",
"typescript": "^5.5.2",
"vite": "^5.3.2",
"vitest": "^1.6.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}