diff --git a/package.json b/package.json index 1c8d244..32ae81a 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/arkhai-io/natural-language-agreements.git" + "url": "git+https://github.com/arkhai-io/natural-language-agreements.git" }, "keywords": [ "blockchain", @@ -21,7 +21,7 @@ "escrow" ], "bin": { - "nla": "./dist/cli/index.js" + "nla": "dist/cli/index.js" }, "files": [ "dist/**/*", @@ -38,8 +38,12 @@ "typescript": "^5.9.3" }, "scripts": { - "build": "tsc --project tsconfig.build.json", + "build": "tsc --project tsconfig.build.json && chmod +x dist/cli/index.js", "prepublishOnly": "npm run build", + "patch":"npm version patch", + "minor":"npm version minor", + "major":"npm version major", + "publish": "npm publish --dry-run", "dev": "bun run index.ts", "start": "bun run index.ts", "test": "bun test ./tests --exclude alkahest-ts/** ",