-
Notifications
You must be signed in to change notification settings - Fork 387
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 886 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 886 Bytes
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
{
"name": "cccdev",
"version": "1.0.3",
"description": "CLI tool for installing Cocos Creator devtools preview template",
"license": "MIT",
"author": "potato47",
"repository": {
"type": "git",
"url": "https://github.com/potato47/ccc-devtools"
},
"bin": {
"cccdev": "./bin/cccdev.ts"
},
"files": [
"bin/",
"src/",
"template/"
],
"scripts": {
"build": "bun run --cwd packages/cccdev-template-3x build && bun run copy-template",
"copy-template": "rm -rf template/3x && mkdir -p template/3x && cp -r packages/cccdev-template-3x/template/* template/3x/",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@types/bun": "^1.3.10",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"typescript": "^5.9.3"
}
}