-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.21 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "narrative-cli",
"version": "1.0.0",
"description": "CLI for interacting with Narrative Protocol deployments",
"type": "module",
"bin": {
"narrative-cli": "./dist/index.js"
},
"scripts": {
"build": "bun build ./src/index.ts --compile --outfile ./dist/narrative-cli",
"dev": "bun run ./src/index.ts",
"typecheck": "bun tsc --noEmit",
"build-all": "bun build ./src/index.ts --compile --target=bun-linux-x64 --outfile ./dist/narrative-cli-linux-x64 && bun build ./src/index.ts --compile --target=bun-linux-arm64 --outfile ./dist/narrative-cli-linux-arm64 && bun build ./src/index.ts --compile --target=bun-darwin-x64 --outfile ./dist/narrative-cli-macos-x64 && bun build ./src/index.ts --compile --target=bun-darwin-arm64 --outfile ./dist/narrative-cli-macos-arm64 && bun build ./src/index.ts --compile --target=bun-windows-x64 --outfile ./dist/narrative-cli-windows-x64.exe"
},
"dependencies": {
"@solana/spl-token": "^0.4.14",
"@solana/web3.js": "^1.98.4",
"bigint-buffer": "^1.1.5",
"bs58": "^5.0.0",
"commander": "^12.1.0",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.19.37",
"typescript": "^5.9.3"
}
}