fix:package.json
This commit is contained in:
parent
aed85dff72
commit
ad205b2e9a
10
package.json
10
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/** ",
|
||||
|
|
|
|||
Loading…
Reference in New Issue