-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 783 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 783 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
34
35
36
37
{
"name": "web4-deploy",
"version": "0.8.0",
"description": "Deploy static content for Web4 webapp. Supports IPFS for now.",
"homepage": "https://github.com/vgrichina/web4-deploy",
"bin": {
"web4-deploy": "bin/deploy"
},
"files": [
"bin/",
"src/",
"data/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"author": "Vladimir Grichina <vgrichina@gmail.com>",
"license": "MIT",
"scripts": {
"test": "tape 'tests/**/*.test.js'"
},
"dependencies": {
"cids": "^1.1.9",
"fast-ipfs": "^0.1.0",
"ipfs-car": "^0.9.1",
"meow": "9",
"near-api-js": "^0.45.1",
"nearfs": "^0.4.0",
"timeout-signal": "^1.1.0",
"web3.storage": "^4.4.0"
},
"devDependencies": {
"tape": "^5.9.0"
}
}