-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.44 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.44 KB
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
{
"name": "pinme",
"version": "1.2.6",
"publishConfig": {
"access": "public"
},
"description": "Deploy Your Frontend In a Single Command",
"main": "dist/index.js",
"scripts": {
"build": "node build.js",
"dev": "NODE_ENV=development node build.js",
"prepublishOnly": "npm run build"
},
"bin": {
"pinme": "./dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"ipfs",
"cli",
"deploy",
"frontend"
],
"author": "Glitter Protocol",
"license": "MIT",
"dependencies": {
"archiver": "^7.0.1",
"axios": "^1.3.2",
"base-x": "^5.0.1",
"bip39": "^3.1.0",
"chalk": "^2.4.2",
"commander": "^11.1.0",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.7",
"ethers": "5.7.2",
"figlet": "^1.7.0",
"form-data": "^4.0.0",
"fs-extra": "^11.2.0",
"inquirer": "^8.2.5",
"ora": "^3.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"dotenv": "^16.5.0",
"esbuild": "^0.25.2",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.3",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-terser": "^7.0.2"
},
"engines": {
"node": ">= 16.13.0"
}
}