-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 809 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 809 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
34
35
36
37
38
39
40
41
{
"name": "zenpm",
"version": "1.0.2",
"description": "Zeno Package Manager CLI",
"main": "dist/index.js",
"bin": {
"zenpm": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"zeno",
"package-manager",
"cli"
],
"author": "",
"license": "ISC",
"dependencies": {
"@solana-program/token": "^0.9.0",
"@solana/kit": "^5.0.0",
"@x402/fetch": "^2.0.0",
"@x402/svm": "^2.0.0",
"commander": "^11.1.0",
"js-yaml": "^4.1.1",
"tar": "^7.5.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
}
}