forked from web3-storage/w3up-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.02 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@web3-storage/w3up-client",
"version": "4.0.1",
"description": "Client for the w3up API",
"license": "Apache-2.0 OR MIT",
"type": "module",
"main": "src/index.js",
"types": "dist/src/index.d.ts",
"typesVersions": {
"*": {
"*": [
"*",
"dist/*",
"dist/src/*",
"dist/src/*/index"
],
"src/*": [
"*",
"dist/*",
"dist/src/*",
"dist/src/*/index"
]
}
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"node": "./src/index.node.js",
"import": "./src/index.js"
},
"./client": {
"types": "./dist/src/client.d.ts",
"import": "./src/client.js"
},
"./capability/space": {
"types": "./dist/src/capability/space.d.ts",
"import": "./src/capability/space.js"
},
"./capability/store": {
"types": "./dist/src/capability/store.d.ts",
"import": "./src/capability/store.js"
},
"./capability/upload": {
"types": "./dist/src/capability/upload.d.ts",
"import": "./src/capability/upload.js"
},
"./types": "./src/types.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"src",
"dist"
],
"scripts": {
"lint": "standard",
"prepare": "npm run build",
"build": "tsc --build",
"test": "npm-run-all -p -r mock test:all",
"test:all": "run-s test:node test:browser",
"test:node": "hundreds -r html -r text mocha 'test/**/!(*.browser).test.js' -n experimental-vm-modules -n no-warnings -n stack-trace-limit=1000",
"test:browser": "playwright-test 'test/**/!(*.node).test.js'",
"mock": "run-p mock:*",
"mock:bucket-200": "PORT=9200 STATUS=200 node test/helpers/bucket-server.js",
"rc": "npm version prerelease --preid rc",
"docs": "npm run build && typedoc --out docs-generated"
},
"dependencies": {
"@ipld/dag-ucan": "^3.0.1",
"@ucanto/client": "^4.0.2",
"@ucanto/core": "^4.0.2",
"@ucanto/interface": "^4.0.2",
"@ucanto/principal": "^4.0.2",
"@ucanto/transport": "^4.0.2",
"@web3-storage/access": "^9.1.1",
"@web3-storage/capabilities": "^2.0.0",
"@web3-storage/upload-client": "^5.2.0"
},
"devDependencies": {
"@ucanto/server": "^4.0.2",
"assert": "^2.0.0",
"hundreds": "^0.0.9",
"mocha": "^10.1.0",
"multiformats": "^10.0.2",
"npm-run-all": "^4.1.5",
"playwright-test": "^8.1.1",
"standard": "^17.0.0",
"typedoc": "^0.23.21",
"typedoc-plugin-missing-exports": "^1.0.0",
"typescript": "^4.8.3"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web3-storage/w3up-client.git"
},
"keywords": [
"web3",
"storage",
"upload",
"store",
"DAG",
"IPLD",
"UCAN",
"IPFS"
],
"author": "DAG House",
"bugs": {
"url": "https://github.com/web3-storage/w3up-client/issues"
},
"homepage": "https://github.com/web3-storage/w3up-client#readme",
"standard": {
"env": [
"browser",
"mocha"
]
}
}