-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
83 lines (83 loc) · 2.25 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
74
75
76
77
78
79
80
81
82
83
{
"name": "ardrive-cli",
"version": "2.0.6",
"description": "The ArDrive Command Line Interface (CLI is a Node.js application for terminal-based ArDrive workflows. It also offers utility operations for securely interacting with Arweave wallets and inspecting various Arweave blockchain conditions.",
"main": "./lib/index.js",
"bin": {
"ardrive": "./lib/index.js"
},
"types": "./lib/index.d.ts",
"dependencies": {
"ardrive-core-js": "2.0.6",
"arweave": "1.11.4",
"axios": "^0.21.1",
"bn.js": "^5.2.1",
"commander": "^8.2.0",
"ipfs-only-hash": "^4.0.0",
"lodash": "^4.17.21",
"prompts": "^2.4.0"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/bn.js": "^5",
"@types/chai": "^4.2.21",
"@types/jwk-to-pem": "^2.0.0",
"@types/lodash": "^4",
"@types/mocha": "^9.0.0",
"@types/node": "^18.17.2",
"@types/node-fetch": "^2.6.1",
"@types/prompts": "^2.0.9",
"@types/sinon": "^10.0.2",
"@types/source-map-support": "^0",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"chai": "^4.3.4",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "latest",
"husky": "^=6",
"lint-staged": "^11.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"source-map-support": "^0.5.20",
"ts-node": "^10.2.1",
"ts-sinon": "^2.0.1",
"typescript": "^5.1.6"
},
"scripts": {
"clean": "rimraf [ lib .nyc_output node_modules coverage ]",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts",
"lintfix": "eslint . --ext .ts --fix",
"test": "nyc mocha",
"coverage": "nyc --reporter text mocha",
"typecheck": "tsc --noemit",
"build": "yarn clean && tsc --project ./tsconfig.prod.json",
"ci": "yarn build && yarn test",
"dev": "yarn clean && tsc --project ./tsconfig.prod.json -w"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "AGPL-3.0-or-later",
"author": {
"name": "Permanent Data Solutions Inc",
"email": "info@ardrive.io",
"website": "https://ardrive.io"
},
"repository": {
"type": "git",
"url": "https://github.com/ardriveapp/ardrive-cli.git"
},
"files": [
"lib/**/*"
]
}