@cocos/ccbuild 1.0.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +49 -0
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # CCBUILD
2
+
3
+ The next generation of build tool for Cocos engine.
4
+
5
+ # What problems does this build tool solve ?
6
+
7
+ - To merge `@editor/quick-compiler` and `@cocos/build-engine`
8
+ - To support build cache management
9
+ - To support generating ts engine for AOT optimization on Open Harmony
10
+ - To support API generation
11
+ - To support API report
12
+ - To support API document model generation
13
+ - To support build modular engine
14
+ - More human-friendly log info
15
+ -
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@cocos/ccbuild",
3
+ "version": "1.0.0-alpha.0",
4
+ "description": "The next generation of build tool for Cocos engine.",
5
+ "main": "./lib/index.js",
6
+ "scripts": {
7
+ "test": "jest"
8
+ },
9
+ "files": [
10
+ "./lib",
11
+ "./package.json",
12
+ "./README.md"
13
+ ],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://gitee.com/pp_pro/ccbuild.git"
17
+ },
18
+ "keywords": [
19
+ "cocos",
20
+ "engine",
21
+ "build",
22
+ "compile"
23
+ ],
24
+ "author": "PP_Pro",
25
+ "license": "MIT",
26
+ "devDependencies": {
27
+ "@types/dedent": "^0.7.0",
28
+ "@types/fs-extra": "^9.0.13",
29
+ "@types/jest": "^29.2.3",
30
+ "jest": "^29.3.1",
31
+ "ts-jest": "^29.0.3",
32
+ "@types/eslint": "^8.21.1"
33
+ },
34
+ "dependencies": {
35
+ "typescript": "^4.9.3",
36
+ "@babel/core": "^7.20.12",
37
+ "@babel/parser": "^7.20.13",
38
+ "@babel/plugin-syntax-decorators": "^7.19.0",
39
+ "@babel/plugin-syntax-typescript": "^7.20.0",
40
+ "@babel/traverse": "^7.20.13",
41
+ "dedent": "^0.7.0",
42
+ "fs-extra": "^10.1.0",
43
+ "json5": "^2.2.3",
44
+ "@typescript-eslint/eslint-plugin": "^5.52.0",
45
+ "@typescript-eslint/parser": "^5.52.0",
46
+ "eslint": "^8.34.0",
47
+ "eslint-plugin-unused-imports": "^2.0.0"
48
+ }
49
+ }