-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.57 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.57 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
{
"name": "@gridspace/raster-path",
"version": "1.1.1",
"private": false,
"description": "Terrain and Tool Raster Path Finder using WebGPU",
"type": "module",
"main": "build/raster-path.js",
"exports": {
".": "./build/raster-path.js",
"./worker": "./build/raster-worker.js"
},
"files": [
"build/**/*",
"src/**/*",
"scripts/**/*",
"README.md",
"LICENSE"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/gridspace/raster-path.git"
},
"bugs": {
"url": "https://github.com/gridspace/raster-path/issues"
},
"scripts": {
"prepare": "npm run build",
"postinstall": "npm run build",
"build": "npm run clean && npm run build:web && npm run build:shaders",
"build:shaders": "node scripts/build-shaders.js",
"build:web": "mkdir -p build && cp src/web/*.html src/web/*.css src/web/*.js build/ && cp src/core/raster-path.js build/raster-path.js && cp src/etc/serve.json build/",
"clean": "rm -rf build/",
"dev": "npm run build && npm run serve",
"serve": "npm run build && npx serve build --config serve.json --listen 9090",
"publish:public": "npm publish --access public",
"test": "npm run test:planar && npm run test:radial",
"test:planar": "npm run build && npx electron src/test/planar-test.cjs",
"test:planar-tiling": "npm run build && npx electron src/test/planar-tiling-test.cjs",
"test:radial": "npm run build && npx electron src/test/radial-test.cjs",
"test:calibrate": "npm run build && npx electron src/test/calibrate-test.cjs",
"test:batch-divisor": "npm run build && npx electron src/test/batch-divisor-benchmark.cjs",
"test:work-estimation": "npm run build && npx electron src/test/work-estimation-profile.cjs",
"test:workload-calibration": "npm run build && npx electron src/test/workload-calibration.cjs",
"test:lathe-cylinder-2-debug": "npm run build && npx electron src/test/lathe-cylinder-2-debug.cjs",
"test:extreme-work": "npm run build && npx electron src/test/extreme-work-test.cjs",
"test:radial-thread-limit": "npm run build && npx electron src/test/radial-thread-limit-test.cjs",
"test:radial-v3": "npm run build && npx electron src/test/radial-v3-benchmark.cjs",
"test:tracing": "npm run build && npx electron src/test/tracing-test.cjs"
},
"keywords": [
"cnc",
"toolpath",
"rasterization",
"terrain",
"webgpu",
"stl",
"3d",
"gpu-accelerated"
],
"author": "",
"license": "MIT",
"devDependencies": {
"electron": "^28.0.0",
"esbuild": "^0.27.0",
"serve": "^14.2.1"
}
}