-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.24 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "track-lab",
"private": true,
"version": "0.9.0",
"type": "module",
"description": "Browser-based video motion-analysis tool. Load a video, calibrate real-world distances, and auto-track objects across frames using computer vision.",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/OpenPhysics/TrackLab.git"
},
"keywords": [
"track-lab",
"simulation",
"SceneryStack",
"interactive",
"physics",
"kinematics",
"measurement",
"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 && tsc -p tsconfig.test.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"release": "npm run check && npm run lint && npm run build && npm version patch && git push && git push --tags",
"watch": "tsc --watch",
"clean": "rm -rf dist",
"generate-svg-icon": "tsx scripts/bouncingBallToSVG.ts",
"icons": "npm run generate-svg-icon && tsx scripts/generate-icons.ts",
"prepare": "git rev-parse --is-inside-work-tree >/dev/null 2>&1 && git config core.hooksPath .githooks || true",
"test:fuzz": "playwright test --project=chromium",
"test:fuzz:quick": "FUZZ_DURATION=10 playwright test --project=chromium"
},
"dependencies": {
"@techstark/opencv-js": "^5.0.0-release.1",
"scenerystack": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.5",
"@playwright/test": "^1.62.0",
"@types/node": "^24.13.3",
"happy-dom": "^20.11.1",
"jsdom": "^30.0.0",
"playwright": "^1.61.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",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=24"
},
"overrides": {
"sourcemap-codec": "npm:@jridgewell/sourcemap-codec@^1.5.0",
"source-map": "^0.7.4",
"lodash": "^4.18.0",
"three": "^0.125.0",
"brace-expansion": "^5.0.8"
}
}