- Implemented `gererateBunConfig` and `buildWithBun` functions for building projects with Bun. - Added command-line interface using Commander for building projects. - Removed Rollup-related code and configuration. - Deleted unused config module. - Updated TypeScript configuration to extend from a shared config. - Added .npmrc for authentication tokens. - Created bun.config.ts for Bun build configuration. - Added README documentation for usage instructions.
36 lines
722 B
JSON
36 lines
722 B
JSON
{
|
|
"name": "@kevisual/code-builder",
|
|
"version": "0.0.2",
|
|
"description": "",
|
|
"main": "src/index.ts",
|
|
"bin": {
|
|
"code-builder": "./bin/code.js"
|
|
},
|
|
"scripts": {
|
|
"start": "bun run dev",
|
|
"build": "bun ./bun.config.ts",
|
|
"dev": " bun run build --watch"
|
|
},
|
|
"keywords": [],
|
|
"files": [
|
|
"dist",
|
|
"bin",
|
|
"src"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"author": "abearxiong <xiongxiao@xiongxiao.me>",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@kevisual/use-config": "^1.0.21",
|
|
"nanoid": "^5.1.6"
|
|
},
|
|
"devDependencies": {
|
|
"@kevisual/types": "^0.0.10",
|
|
"commander": "^14.0.2",
|
|
"@types/bun": "^1.3.5",
|
|
"@types/node": "^25.0.3"
|
|
}
|
|
} |