-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.9 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.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
{
"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/realdwg-web.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"analyze": "nx run-many -t analyze",
"build": "nx run-many -t build",
"clean": "nx run-many -t clean",
"dev": "nx run @mlightcad/realdwg-web-example:dev",
"doc": "typedoc",
"format": "prettier --config ./.prettierrc.js --write \"packages/**/*.{ts,js,json}\"",
"lint": "nx run-many -t lint",
"lint:fix": "nx run-many -t lint:fix",
"release": "node tools/release.mjs",
"test": "jest"
},
"engines": {
"pnpm": ">=8"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@eslint/js": "^9.9.1",
"@intlify/eslint-plugin-vue-i18n": "^3.0.0",
"@nx/js": "19.3.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@types/rollup-plugin-peer-deps-external": "^2.2.5",
"@typescript-eslint/parser": "^8.4.0",
"@vitejs/plugin-legacy": "^5.4.2",
"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": "^29.7.0",
"lint-staged": "^15.2.7",
"nx": "19.3.1",
"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.27.4",
"typescript": "^5.5.2",
"typescript-eslint": "^8.4.0",
"vite": "^5.2.10"
},
"lint-staged": {
"*.{ts,js,vue}": [
"prettier --config ./.prettierrc.js --write",
"eslint --config ./.eslintrc.js --fix --quiet"
],
"*.md": [
"prettier --config ./.prettierrc.js --write"
]
}
}