fix:package.json

This commit is contained in:
ngoc 2026-01-26 04:41:09 +07:00
parent aed85dff72
commit ad205b2e9a
No known key found for this signature in database
GPG Key ID: 51FE6110113A5C32
1 changed files with 7 additions and 3 deletions

View File

@ -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/** ",