-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 983 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 983 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
38
39
40
41
42
43
{
"name": "create-nft-storage",
"version": "1.0.0",
"description": "Create a new NFT Storage app.",
"homepage": "https://nft.storage",
"license": "(Apache-2.0 OR MIT)",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/nftstorage/nft.storage",
"directory": "packages/create-nft-storage"
},
"bugs": {
"url": "https://github.com/nftstorage/nft.storage/issues"
},
"bin": {
"create-nft-storage": "src/index.js"
},
"scripts": {},
"dependencies": {
"execa": "6.1.0",
"fs-extra": "^10.0.0",
"got": "^12.0.2",
"inquirer": "^8.0.0",
"kleur": "^4.1.4",
"ora": "6.1.0",
"rimraf": "^3.0.2",
"sade": "^1.8.1",
"tar": "^6.1.11"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.2.0",
"@types/node": "^17.0.21",
"@types/rimraf": "^3.0.2",
"@types/tar": "^6.1.1",
"semver": "^7.3.5"
},
"files": [
"src",
"templates"
]
}