-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.85 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.85 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
{
"name": "ptype",
"version": "2.0.0",
"description": "P-Type: 3D Typing Game - Defend against enemy spaceships by typing words in this immersive 3D typing game",
"type": "module",
"scripts": {
"dev": "vite",
"build": "rm -rf dist && tsc && vite build",
"build:analyze": "ANALYZE=true tsc && vite build",
"preview": "vite preview",
"test": "echo \"Error: no test specified\" && exit 1",
"test:demo": "tsx tests/demo.ts",
"test:manual": "tsx tests/manual-runner.ts",
"test:run": "tsx tests/run-tests.ts",
"test:all": "tsx tests/run-tests.ts --all",
"generate:assets": "tsx scripts/generate-assets.ts",
"generate:textures": "tsx scripts/generate-textures.ts",
"check:models": "tsx scripts/check-existing-jobs.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RandyNorthrup/ptype.git"
},
"keywords": [
"typing",
"game",
"3d",
"threejs",
"pwa",
"education"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/RandyNorthrup/ptype/issues"
},
"homepage": "https://github.com/RandyNorthrup/ptype#readme",
"devDependencies": {
"@types/node": "^24.10.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/three": "^0.181.0",
"@vercel/node": "^5.5.3",
"@vitejs/plugin-react": "^5.1.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"dotenv": "^17.2.3",
"rollup-plugin-visualizer": "^5.12.0",
"sharp": "^0.34.4",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-pwa": "^1.1.0",
"workbox-window": "^7.3.0"
},
"dependencies": {
"@react-three/drei": "^10.7.6",
"@react-three/fiber": "^9.4.0",
"js-yaml": "^4.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"three": "^0.181.0"
}
}