- Restructured as bun monorepo with packages/cfg and packages/worker - CLI rewritten in TypeScript with modular architecture - Published as @shazhou/cfg@1.0.0 (replaces @shazhou/config) - Deprecated @shazhou/config on npm - Removed legacy Python scripts and old cli-npm package
18 lines
442 B
JSON
18 lines
442 B
JSON
{
|
|
"name": "@shazhou/cfg",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"bin": {
|
|
"cfg": "./dist/cli.js"
|
|
},
|
|
"files": ["dist"],
|
|
"scripts": {
|
|
"build": "bun build src/cli.ts --outfile dist/cli.js --target node --minify && { echo '#!/usr/bin/env node'; cat dist/cli.js; } > dist/cli.tmp && mv dist/cli.tmp dist/cli.js",
|
|
"prepublishOnly": "bun run build"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"license": "MIT"
|
|
}
|