forked from xyz-tools/gcode-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.9 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
74
75
{
"name": "@chestnutlabs/gcode-preview-workspace",
"version": "0.0.0",
"private": true,
"description": "Workspace root for the Chestnut Labs G-code Preview toolpath stack: worker parser, dialect/container adapters, ToolpathIR, Three.js renderer, and Vue/React/Svelte viewer packages.",
"workspaces": [
"packages/*"
],
"author": "Chestnut Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ChestnutLabs/gcode-preview.git"
},
"homepage": "https://github.com/ChestnutLabs/gcode-preview#readme",
"bugs": "https://github.com/ChestnutLabs/gcode-preview/issues",
"engines": {
"node": ">=22"
},
"main": "dist/gcode-preview.es.js",
"types": "dist/gcode-preview.d.ts",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.1",
"@rollup/plugin-node-resolve": "^16.0.1",
"@types/node": "^24.0.10",
"@types/three": "0.178.0",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^8.57.1",
"eslint-plugin-tsdoc": "^0.5.2",
"happy-dom": "^20.0.0",
"prettier": "^3.6.2",
"publint": "^0.3.22",
"rollup": "^4.44.2",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-esbuild": "^6.2.1",
"rollup-plugin-typescript2": "^0.36.0",
"three": "0.178.0",
"typedoc": "^0.28.7",
"vitest": "^4.1.0"
},
"scripts": {
"dev:build": "export NODE_ENV=development; rollup -c",
"dev:watch": "export NODE_ENV=development; rollup -c -w",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"typeCheck": "tsc --noEmit",
"lint": "prettier --check . && eslint -c .eslintrc.js .",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"eslint:fix": "eslint -c .eslintrc.js . --fix",
"prettier:fix": "prettier --plugin-search-dir . --write .",
"test": "vitest run",
"test:packages": "npm test --workspaces --if-present",
"license:check": "node tools/license-report.mjs --check",
"test:watch": "vitest --watch",
"check": "npm run test && npm run typeCheck && npm run lint && echo '😅 All checks passed!'",
"test:consumer-vue": "node tools/consumer-vue/run.mjs",
"verify:registry": "node tools/consumer-vue/run-registry.mjs",
"pack:check": "node tools/pack-check.mjs",
"docs:links": "node tools/link-check.mjs",
"docs:api": "typedoc",
"docs:api:watch": "typedoc --watch",
"docs:build": "node tools/docs/build-api.mjs",
"changeset": "changeset",
"version": "changeset version && node tools/release/sync-internal-ranges.mjs && npm install --package-lock-only --no-audit --no-fund",
"release:sync-check": "node tools/release/sync-internal-ranges.mjs --check",
"release:dry-run": "node tools/release/publish.mjs --dry-run",
"release:publish": "node tools/release/publish.mjs"
},
"dependencies": {
"lil-gui": "^0.20.0"
}
}