-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
73 lines (73 loc) · 1.87 KB
/
package.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "arkb",
"version": "1.1.61",
"main": "./bin/app.js",
"repository": "https://github.com/textury/arkb.git",
"author": "Cedrik <cedrik.git@tryninja.io>",
"license": "MIT",
"files": [
"bin/**/*"
],
"bin": {
"arkb": "./bin/app.js"
},
"scripts": {
"start": "node ./bin/app.js",
"predev": "yarn build",
"dev": "node ./bin/app.js",
"prebuild": "rimraf bin",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build && husky install",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"engines": {
"node": ">=15.11.0",
"npm": ">=7.6.0"
},
"dependencies": {
"@supercharge/promise-pool": "^1.7.0",
"@textury/ardb": "^1.1.3",
"arbundles": "^0.6.19",
"arweave": "1.11.4",
"arweave-stream-tx": "^1.1.0",
"axios": "^0.21.4",
"blockweave": "^1.0.15",
"clear": "^0.1.0",
"cli-color": "^2.0.0",
"clui": "^0.3.6",
"community-js": "^1.1.68",
"conf": "^10.0.2",
"exponential-backoff": "^3.1.0",
"fast-glob": "^3.2.7",
"figlet": "^1.5.2",
"fuse.js": "^6.4.6",
"inquirer": "^8.1.2",
"mime": "^2.5.2",
"minimist": "^1.2.5",
"normalize-path": "^3.0.0",
"p-retry": "^4.6.1",
"spdx-license-ids": "^3.0.10",
"stream-chunker": "^1.2.8",
"temp-dir": "^2.0.0"
},
"devDependencies": {
"@types/clear": "^0.1.2",
"@types/figlet": "^1.5.4",
"@types/inquirer": "^7.3.3",
"@types/mime": "^2.0.3",
"@types/minimist": "^1.2.2",
"@types/node": "^16.7.1",
"husky": "^7.0.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.5"
}
}