-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.6 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@cocos/ccbuild",
"version": "2.2.19",
"description": "The next generation of build tool for Cocos engine.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"postinstall": "npm run build",
"build": "tsc && turbo build",
"change": "node ./scripts/remove-workspaces.js && changeset add && node ./scripts/restore-workspaces.js",
"version": "node ./scripts/remove-workspaces.js && changeset version && node ./scripts/restore-workspaces.js",
"version-alpha": "node ./scripts/remove-workspaces.js && changeset pre enter alpha && changeset version && changeset pre exit && node ./scripts/restore-workspaces.js",
"version-snapshot": "node ./scripts/remove-workspaces.js && changeset version --snapshot test && node ./scripts/restore-workspaces.js",
"deploy": "npm run clean && turbo build --force && tsc && node ./scripts/deploy.js",
"api": "npm run build && node ./scripts/update-api.js",
"doc": "typedoc",
"clean": "node ./scripts/clear.js",
"test": "turbo build && node ./scripts/setup-test.js && jest",
"gen-module-graph": "node ./scripts/gen-module-graph.js"
},
"files": [
"lib/src/**/*",
"static/**/*",
"CHANGELOG.md",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/cocos/cocos-ccbuild"
},
"keywords": [
"cocos",
"engine",
"build",
"compile"
],
"workspaces": [
"./modules/*"
],
"author": "PP_Pro",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@rollup/plugin-typescript": "~11.1.2",
"@types/babel__helper-module-imports": "^7.18.0",
"@types/babel__preset-env": "^7.9.2",
"@types/dedent": "^0.7.0",
"@types/eslint": "^8.21.1",
"@types/fs-extra": "^9.0.13",
"@types/glob": "~7.2.0",
"@types/jest": "^29.2.3",
"@types/node": "~20.3.3",
"@types/resolve": "^1.20.2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"chalk": "^4.1.2",
"del": "^6.1.1",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-unused-imports": "^2.0.0",
"graphviz": "^0.0.9",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"turbo": "^1.10.12",
"typedoc": "^0.24.8"
},
"dependencies": {
"@ccbuild/build-engine": "*",
"@ccbuild/bundler": "*",
"@ccbuild/dts-bundler": "*",
"@ccbuild/modularize": "*",
"@ccbuild/stats-query": "*",
"@ccbuild/transformer": "*",
"@ccbuild/utils": "*",
"dedent": "^0.7.0",
"fs-extra": "~11.1.1",
"glob": "~7.2.0",
"json5": "^2.2.3",
"resolve": "^1.22.1"
}
}