-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 862 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 862 Bytes
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
29
30
31
32
33
{
"name": "programkit-sdk",
"version": "1.0.0",
"description": "SDK và công cụ CLI cho việc tương tác với Solana Programs",
"main": "dist/build.js",
"scripts": {
"build": "tsc",
"start": "npx ts-node src/build.ts",
"export": "npx ts-node src/build.ts export",
"docs": "npx ts-node src/build.ts run docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"murphis": "dist/build.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@coral-xyz/anchor": "^0.28.1",
"@solana/web3.js": "^1.87.6",
"commander": "^13.1.0",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"open": "^10.0.4",
"typedoc": "^0.28.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.16",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}