-
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": "@bitxenia/astrawiki-cli",
"description": "Command-line interface to manage an Astrawiki node.",
"version": "0.0.13",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"clean": "rm -rf data orbitdb",
"docker-push": "docker build --tag bitxenia/astrawiki-cli . && docker push bitxenia/astrawiki-cli"
},
"bin": {
"astrawiki": "./dist/client/index.js"
},
"type": "module",
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@bitxenia/astrawiki": "0.1.22",
"axios": "^1.8.4",
"blockstore-fs": "^2.0.4",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"datastore-fs": "^10.0.4",
"express": "^5.1.0",
"ora": "^8.2.0"
},
"devDependencies": {
"@types/express": "^5.0.1",
"typescript": "^5.8.3"
}
}