mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-11 17:29:44 +00:00

* chore: add extension templates * feat: add create-kunkun and cli package * fix: cli and create-kunkun package location * fix: cli package test * ci: run test for CI pipeline only on Linux The most important E2E test is run with docker, Linux anyways, no need to run on Mac and Windows
44 lines
972 B
JSON
44 lines
972 B
JSON
{
|
|
"name": "create-kunkun",
|
|
"type": "module",
|
|
"version": "0.1.33",
|
|
"bin": {
|
|
"create-kunkun": "dist/index.mjs"
|
|
},
|
|
"scripts": {
|
|
"prepublishOnly": "bun build.ts",
|
|
"build": "bun build.ts",
|
|
"test": "bun test --coverage"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^26.0.1",
|
|
"@rollup/plugin-json": "^6.1.0",
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
"@rollup/plugin-replace": "^5.0.7",
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
"@types/bun": "latest",
|
|
"@types/fs-extra": "^11.0.4",
|
|
"get-folder-size": "^5.0.0",
|
|
"rollup": "^4.24.0",
|
|
"rollup-plugin-visualizer": "^5.12.0",
|
|
"tar": "^7.4.3",
|
|
"vitest": "^2.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@inquirer/prompts": "^5.2.1",
|
|
"@kksh/api": "workspace:*",
|
|
"chalk": "^5.3.0",
|
|
"commander": "^12.1.0",
|
|
"fs-extra": "^11.2.0",
|
|
"handlebars": "^4.7.8",
|
|
"valibot": "^0.40.0"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|