-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.24 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
83
84
85
{
"name": "kushcloud",
"version": "4.5.0",
"private": false,
"description": "Flappy bird style arcade game with canvas physics, unlockable skins, and power-ups.",
"license": "MIT",
"author": "Linacre",
"type": "module",
"files": [
"dist",
"src",
"public",
"docs",
"scripts",
"*.md",
"LICENSE"
],
"sideEffects": false,
"main": "index.html",
"scripts": {
"dev": "vite",
"build": "vite build && node scripts/verify-build.mjs",
"preview": "vite preview",
"serve": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"audit": "npm audit",
"clean": "node -e \"const f=['node_modules','dist','android/app/build'];f.forEach(d=>require('fs').rmSync(d,{recursive:true,force:true}))\"",
"clean:dist": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"release": "echo 'See docs/RELEASE_GUIDE.md for manual release process'"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"dependencies": {
"@testing-library/dom": "^10.4.1",
"clsx": "2.1.1",
"firebase": "^12.16.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"tailwind-merge": "3.6.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@tailwindcss/vite": "4.3.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "26.1.1",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.3",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.6.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"jsdom": "^29.1.1",
"tailwindcss": "4.3.2",
"typescript": "7.0.2",
"typescript-eslint": "^8.63.0",
"vite": "8.1.4",
"vitest": "^4.1.8"
},
"keywords": [
"flappy-bird",
"game",
"arcade",
"react",
"typescript",
"canvas",
"web-audio"
],
"repository": {
"type": "git",
"url": "https://github.com/LIN4CRE/KushCloud.git"
},
"homepage": "https://lin4cre.github.io/KushCloud/",
"bugs": {
"url": "https://github.com/LIN4CRE/KushCloud/issues"
}
}