-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.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
{
"name": "point-five",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "An interactive browser based event display for the CMS experiment at the LHC, built for education and public outreach.",
"license": "MIT",
"homepage": "https://cms.sponde.de",
"repository": {
"type": "git",
"url": "git+https://github.com/Kracht/point-five.git"
},
"keywords": [
"cms",
"cern",
"lhc",
"particle-physics",
"event-display",
"open-data",
"threejs",
"webgl",
"outreach"
],
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:zip": "vite build && cd dist && zip -r ../point-five.zip . && echo 'Done: point-five.zip'",
"preview": "vite preview",
"check": "node scripts/check-physics.mjs",
"fetch:events": "./scripts/fetch-events.sh",
"build:geometry": "node --max-old-space-size=6144 scripts/optimize-geometry.mjs"
},
"dependencies": {
"gsap": "^3.12.0",
"jszip": "^3.10.1",
"three": "^0.170.0"
},
"devDependencies": {
"@gltf-transform/core": "^4.4.2",
"@gltf-transform/extensions": "^4.4.2",
"@gltf-transform/functions": "^4.4.2",
"meshoptimizer": "^1.2.0",
"vite": "^5.4.0"
}
}