-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 KB
/
package.json
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
{
"name": "mlightcad",
"version": "0.0.1",
"description": "A highly customizable standalone view cube addon for three.js",
"license": "MIT",
"author": "MLight Lee <mlight.lee@outlook.com>",
"repository": {
"type": "git",
"url": "git://github.com/mlight-lee/three-viewcube"
},
"keywords": [
"viewcube",
"axes",
"three",
"three.js",
"cad",
"mlight",
"mlightcad"
],
"scripts": {
"dev": "nx run @mlightcad/three-viewcube-demo:dev",
"format": "prettier --config ./.prettierrc.js --write packages/**/*.{ts,js,vue,json}",
"clean": "nx run-many -t clean",
"build": "nx run-many -t build",
"lint": "nx run-many -t lint",
"lint:fix": "eslint -c ./.eslintrc.js --ext .ts,.js,.vue --fix --quiet packages/",
"publish": "pnpm lint clean && pnpm publish --filter three-viewcube --access public --no-git-checks"
},
"engines": {
"pnpm": ">=8"
},
"private": false,
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@nx/js": "19.3.1",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"lint-staged": "^15.2.7",
"nx": "19.3.1",
"prettier": "^3.3.2",
"rimraf": "^6.0.1",
"typescript": "^5.5.2",
"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"
]
}
}