-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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
{
"name": "cocos-fe",
"description": "cocos fe team",
"private": false,
"workspaces": [
"packages/*",
"projects/*"
],
"scripts": {
"preinstall": "node ./scripts/preinstall-check-node.js",
"docs:dev": "npm run dev -w @cocos-fe/document",
"docs:build": "npm run build -w @cocos-fe/document",
"docs:serve": "npm run serve -w @cocos-fe/document",
"editor-tool:dev": "npm run dev -w cocos-editor-tool",
"editor-tool:build": "npm run build -w cocos-editor-tool",
"lint:js": "cross-env NODE_ENV=production eslint --fix --ext .js,.vue,.ts",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cocos-creator/cocos-fe.git"
},
"keywords": [
"cocos",
"creator"
],
"author": "cocos FE",
"license": "MIT",
"bugs": {
"url": "https://github.com/cocos-creator/cocos-fe/issues"
},
"homepage": "https://github.com/cocos-creator/cocos-fe#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.24.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{vue,js,ts}": [
"npm run lint:js"
]
}
}