-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.57 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.57 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
{
"name": "webgpu-particles",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "vite",
"build": "vite build --emptyOutDir",
"deploy": "yarn lint && yarn format:check && yarn build",
"check-types": "tsc --noemit",
"lint:ts": "eslint .",
"lint:fix": "eslint . --fix",
"lint": "yarn check-types && yarn lint:ts",
"format:check": "prettier . --check",
"format:fix": "prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hsimpson/webgpu-particles.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/hsimpson/webgpu-particles/issues"
},
"homepage": "https://github.com/hsimpson/webgpu-particles#readme",
"devDependencies": {
"@eslint-react/eslint-plugin": "^4.2.3",
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-color": "^3.0.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@webgpu/types": "^0.1.69",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "^3.8.2",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vite": "^8.0.8"
},
"dependencies": {
"jotai": "^2.19.1",
"react": "^19.2.5",
"react-color": "^2.19.3",
"react-dom": "^19.2.5",
"wgpu-matrix": "^3.4.2"
}
}