This repository has been archived by the owner on Dec 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.59 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
{
"name": "@web3-storage/w3up-cli",
"description": "w3up interface",
"version": "0.6.0",
"type": "module",
"license": "Apache-2.0 OR MIT",
"main": "./src/main.js",
"bin": {
"w3up": "./src/cli.js"
},
"repository": "web3-storage/w3up-cli",
"keywords": [
"w3up"
],
"files": [
"src"
],
"scripts": {
"lint": "standard",
"pretest": "npm run typecheck && npm run lint",
"test": "echo 'no tests exist'",
"typecheck": "tsc",
"test:coverage": "vitest run --coverage",
"test:dev": "vitest"
},
"dependencies": {
"@ipld/car": "4.1.6",
"@ipld/dag-cbor": "^8.0.0",
"@ipld/dag-json": "^9.0.1",
"@ipld/dag-pb": "^3.0.0",
"@ipld/unixfs": "^1.1.0-dev",
"@ucanto/core": "^1.0.1",
"@ucanto/interface": "^1.0.0",
"@ucanto/principal": "^1.0.1",
"@ucanto/server": "^1.0.2",
"@ucanto/transport": "^1.0.1",
"@web-std/stream": "^1.0.1",
"@web3-storage/w3up-client": "^3.2.0",
"archy": "^1.0.0",
"cli-table": "^0.3.11",
"conf": "^10.2.0",
"dotenv": "^16.0.1",
"eslint": "^8.0.1",
"inquirer": "^9.1.0",
"multiformats": "^9.9.0",
"open": "^8.4.0",
"ora": "^6.1.2",
"stream-to-it": "^0.2.4",
"uint8arrays": "^3.1.0",
"uuid": "^8.3.2",
"yargs": "^17.5.1"
},
"devDependencies": {
"standard": "^17.0.0",
"@types/inquirer": "^9.0.1",
"@types/yargs": "^17.0.11",
"semantic-release": "^19.0.5",
"typescript": "^4.8.3",
"vitest": "^0.23.2"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"master",
"next"
]
}
}