Files
api_builder_cli_client/package.json
eshmeshek 5d6e7bbe56 Bump version to 1.1.0
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-14 17:44:23 +03:00

30 lines
846 B
JSON

{
"name": "kisync",
"version": "1.1.0",
"description": "CLI tool for syncing local folders with KIS API Builder",
"main": "dist/index.js",
"bin": {
"kisync": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"bundle": "esbuild dist/index.js --bundle --platform=node --target=node18 --outfile=bundle/kisync.js",
"package": "npm run build && npm run bundle && pkg bundle/kisync.js --targets node18-win-x64 --output release/kisync.exe",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/node-fetch": "^2.6.9",
"@yao-pkg/pkg": "^5.11.0",
"esbuild": "^0.20.0",
"typescript": "^5.3.2",
"ts-node": "^10.9.2"
}
}