-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.2 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.2 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
{
"name": "party",
"version": "0.1.0",
"description": "A comprehensive particle physics simulation system with interactive playground",
"private": true,
"type": "module",
"keywords": [
"particle-physics",
"simulation",
"interactive",
"physics-engine",
"particles",
"canvas",
"typescript",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/cazala/party.git"
},
"author": "cazala",
"license": "MIT",
"scripts": {
"setup": "npm install && npx pnpm@9.15.9 install",
"dev": "npx pnpm@9.15.9 --filter=@cazala/playground dev",
"build": "npx pnpm@9.15.9 --filter=@cazala/party build && npx pnpm@9.15.9 --filter=@cazala/playground build",
"build:core": "npx pnpm@9.15.9 --filter=@cazala/party build",
"build:playground": "npx pnpm@9.15.9 --filter=@cazala/playground build",
"type-check": "npx pnpm@9.15.9 --filter=@cazala/party build && npx pnpm@9.15.9 --filter=@cazala/playground type-check",
"test": "echo 'No tests specified' && exit 0"
},
"devDependencies": {
"@webgpu/types": "^0.1.64",
"pnpm": "^9.15.0",
"typescript": "^5.0.0"
},
"packageManager": "pnpm@9.15.9",
"workspaces": [
"packages/*"
]
}