Initial commit: kisync CLI client for KIS API Builder
CLI tool for syncing local folders with KIS API Builder server. Commands: init, pull, push, status with conflict detection. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
25
package.json
Normal file
25
package.json
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "kisync",
|
||||
"version": "1.0.0",
|
||||
"description": "CLI tool for syncing local folders with KIS API Builder",
|
||||
"main": "dist/index.js",
|
||||
"bin": {
|
||||
"kisync": "./dist/index.js"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"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",
|
||||
"typescript": "^5.3.2",
|
||||
"ts-node": "^10.9.2"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user