-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.3 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
{
"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",
"lint": "eslint .",
"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",
"compare": "node tools/compare-integrators.mjs",
"ephemeris": "node tools/check-ephemeris.mjs",
"bench": "node tools/benchmark-scaling.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": {
"@eslint/js": "^10.0.1",
"@types/p5": "^1.7.6",
"eslint": "^10.9.1",
"globals": "^17.11.0",
"playwright": "^1.62.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.68.0",
"vite": "^7.0.0",
"vitest": "^4.1.10"
}
}