-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.01 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
{
"name": "gravity-simulator",
"version": "1.0.0",
"description": "2D N-body gravity simulator with an interactive gravitational vector field, in TypeScript and p5.js",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"smoketest": "node tools/smoketest.mjs",
"screenshots": "node tools/smoketest.mjs --shots",
"verify:install": "node tools/verify-install.mjs"
},
"keywords": [
"gravity",
"n-body",
"physics",
"simulation",
"vector-field",
"p5js",
"typescript"
],
"author": "Dimitriuses",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Dimitriuses/gravity-simulator.git"
},
"dependencies": {
"p5": "^1.9.0"
},
"devDependencies": {
"@types/p5": "^1.7.6",
"playwright": "^1.62.1",
"typescript": "^5.3.3",
"vite": "^7.0.0",
"vitest": "^4.1.10"
}
}