-
-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.93 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
76
77
78
79
80
81
82
83
{
"name": "mlightcad",
"private": true,
"version": "1.0.0",
"license": "MIT",
"author": "MLight Lee <mlight.lee@outlook.com>",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/mlightcad/cad-viewer"
},
"workspaces": [
"packages/*"
],
"packageManager": "pnpm@10.33.4",
"scripts": {
"analyze": "nx run-many -t analyze",
"build": "nx run-many -t build",
"clean": "nx run-many -t clean",
"dev": "nx run @mlightcad/cad-viewer-example:dev",
"dev:simple": "nx run @mlightcad/cad-simple-viewer-example:dev",
"doc": "typedoc",
"export:html": "nx run @mlightcad/cad-html-exporter-cli:build && node packages/cad-html-exporter-cli/dist/cli.js packages/cad-viewer-example/e2e/fixtures/minimal-line.dxf -o tmp/minimal-line.html",
"export:html:run": "node packages/cad-html-exporter-cli/dist/cli.js",
"export:html:setup": "pnpm --filter @mlightcad/cad-html-exporter-cli install-browser",
"format": "prettier --config ./.prettierrc.js --write \"packages/**/*.{ts,js,vue,json}\"",
"lint": "nx run-many -t lint",
"lint:fix": "nx run-many -t lint:fix",
"preview": "nx run @mlightcad/cad-viewer-example:preview",
"preview:simple": "nx run @mlightcad/cad-simple-viewer-example:preview",
"pre-serve": "nx run @mlightcad/cad-viewer-examples:pre-serve",
"publish:viewer": "pnpm -r publish --access public --no-git-checks",
"release": "node tools/release.mjs",
"sync:versions": "node tools/sync-versions.mjs",
"sync:versions:check": "node tools/sync-versions.mjs --check",
"serve": "nx run @mlightcad/cad-viewer-examples:serve",
"test": "jest",
"test:e2e": "pnpm --filter @mlightcad/cad-viewer-example test:e2e"
},
"engines": {
"node": ">=24",
"pnpm": ">=10"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@eslint/js": "^9.9.1",
"@intlify/eslint-plugin-vue-i18n": "^3.0.0",
"@nx/js": "20.0.4",
"@types/jest": "^30.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.0.0",
"@types/rollup-plugin-peer-deps-external": "^2.2.5",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-vue": "^9.28.0",
"globals": "^15.9.0",
"jest": "^30.4.2",
"lint-staged": "^15.2.7",
"nx": "20.0.4",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-visualizer": "^5.12.0",
"ts-jest": "^29.1.5",
"typedoc": "^0.28.18",
"typescript": "^5.5.2",
"typescript-eslint": "^8.4.0",
"vite": "^5.4.19",
"vite-plugin-static-copy": "^3.1.1"
},
"lint-staged": {
"*.{ts,js,vue}": [
"prettier --config ./.prettierrc.js --write",
"eslint --config ./.eslintrc.js --fix --quiet"
],
"*.md": [
"prettier --config ./.prettierrc.js --write"
]
}
}