-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.11 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "quantum-game-arena",
"version": "0.8.1",
"description": "The play area of Quantum Games that aim to grew up the intuition of Quantum Mechanics.",
"keywords": [
"education",
"games"
],
"private": true,
"icon": "static/favicon.ico",
"license": "MIT",
"repository": {
"url": "git+https://github.com/u-sho/quantum-game-arena.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/u-sho/quantum-game-arena/issues"
},
"maintainers": [
{
"name": "Shouhei Uechi",
"email": "[email protected]",
"url": "https://github.com/u-sho"
},
{
"name": "Takuma Nishimura"
}
],
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "run-p typecheck:*",
"typecheck:svelte": "svelte-check",
"typecheck:vitest": "vitest --typecheck",
"ci": "run-p format:dry lint:dry typecheck:svelte vitest:all",
"test": "vitest",
"vitest:all": "run-s typecheck:vitest test",
"format:dry": "prettier --cache --check .",
"lint:dry": "eslint .",
"format": "prettier --cache --write .",
"lint": "eslint --fix ."
},
"dependencies": {
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12"
},
"devDependencies": {
"@sveltejs/adapter-vercel": "^5.4.5",
"@sveltejs/kit": "^2.7.0",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^20.16.11",
"@typescript/lib-dom": "npm:@types/web@^0.0.171",
"@vitest/coverage-v8": "^2.1.2",
"better-typescript-lib": "^2.9.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.44.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"svelte": "^4.2.19",
"svelte-check": "^4.0.5",
"svelte-scrolling": "^1.4.0",
"tslib": "^2.7.0",
"typescript": "~5.6.3",
"typescript-eslint": "^8.8.1",
"typescript-eslint-language-service": "^5.0.5",
"vite": "^5.4.8",
"vitest": "^2.1.2",
"vscode-emmet-helper": "npm:@vscode/emmet-helper@^2.9.2"
},
"engines": {
"node": "^20.12.0 || 22.x",
"npm": ">=7.21.1"
},
"type": "module"
}