Files
ccc-devtools/package.json

35 lines
886 B
JSON
Raw Normal View History

2022-07-17 16:48:06 +08:00
{
2026-03-15 19:21:04 +08:00
"name": "cccdev",
"version": "1.0.3",
2026-03-15 19:21:04 +08:00
"description": "CLI tool for installing Cocos Creator devtools preview template",
2022-07-17 16:48:06 +08:00
"license": "MIT",
2026-03-15 19:21:04 +08:00
"author": "potato47",
"repository": {
"type": "git",
"url": "https://github.com/potato47/ccc-devtools"
},
"bin": {
"cccdev": "./bin/cccdev.ts"
2022-07-17 16:48:06 +08:00
},
2026-03-15 19:21:04 +08:00
"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"
2022-07-17 16:48:06 +08:00
},
"devDependencies": {
2026-03-15 19:21:04 +08:00
"@types/bun": "^1.3.10",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"typescript": "^5.9.3"
2022-07-17 16:48:06 +08:00
}
}