-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.15 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.15 KB
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
81
82
{
"name": "quantum-game-arena",
"version": "0.10.0",
"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": "shouhei.uechi@gmail.com",
"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.6.1",
"@vercel/speed-insights": "^1.3.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sveltejs/adapter-vercel": "^6.3.2",
"@sveltejs/kit": "^2.53.0",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^24.10.13",
"@typescript/lib-dom": "npm:@types/web@^0.0.335",
"@vitest/coverage-v8": "4.0.18",
"better-typescript-lib": "^2.12.0",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.15.0",
"globals": "^17.3.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.4.1",
"svelte": "^5.53.7",
"svelte-check": "^4.4.3",
"svelte-scrolling": "^1.5.1",
"tslib": "^2.8.1",
"type-fest": "^5.4.4",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.0",
"typescript-eslint-language-service": "^5.0.5",
"vite": "^7.3.1",
"vitest": "4.0.18",
"vscode-emmet-helper": "npm:@vscode/emmet-helper@^2.11.0"
},
"engines": {
"node": "^24.11.0",
"npm": ">=7.21.1"
},
"type": "module"
}