-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.63 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
{
"name": "movingman",
"private": true,
"version": "0.9.0",
"type": "module",
"description": "SceneryStack port of the PhET Java 'Moving Man' simulation. Explore 1D kinematics by dragging a man or using position/velocity/acceleration sliders.",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/OpenPhysics/MovingMan.git"
},
"keywords": [
"movingman",
"moving man",
"simulation",
"SceneryStack",
"interactive",
"physics",
"kinematics",
"education",
"pwa"
],
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build",
"build:single": "tsc && vite build --mode single",
"preview": "vite preview",
"lint": "biome check .",
"format": "biome format --write .",
"fix": "biome check --write .",
"check": "tsc --noEmit && tsc -p tsconfig.scripts.json --noEmit",
"release": "npm run check && npm run lint && npm run build && npm version patch && git push && git push --tags",
"watch": "tsc --watch",
"icons": "tsx scripts/generate-icons.ts",
"clean": "rm -rf dist",
"prepare": "git rev-parse --is-inside-work-tree >/dev/null 2>&1 && git config core.hooksPath .githooks || true"
},
"dependencies": {
"scenerystack": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.4",
"@types/node": "^26.1.1",
"png-to-ico": "^3.0.2",
"sharp": "^0.35.3",
"tsx": "^4.23.1",
"typescript": "^7.0.2",
"vite": "^8.1.5",
"vite-plugin-pwa": "^1.3.0"
},
"engines": {
"node": ">=22.0.0"
},
"overrides": {
"lodash": "^4.18.0",
"three": "^0.125.0"
}
}