-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.34 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
{
"name": "dhost",
"displayName": "DHost",
"description": "Instantly publish static websites to IPFS",
"publisher": "DHost",
"version": "0.2.2",
"engines": {
"vscode": "^1.65.0"
},
"author": {
"name": "P2P Labs",
"email": "contact@p2plabs.xyz",
"url": "https://twitter.com/p2plabs_xyz"
},
"categories": [
"Other"
],
"icon": "images/logo.png",
"activationEvents": [
"onCommand:dhost.token",
"onCommand:dhost.select",
"onCommand:dhost.publish"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "dhost.token",
"title": "web3.storage API token",
"category": "DHost"
},
{
"command": "dhost.select",
"title": "Select folder",
"category": "DHost"
},
{
"command": "dhost.publish",
"title": "Publish to IPFS",
"category": "DHost"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/p2plabsxyz/dhost.git"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "^14.18.53",
"@types/vscode": "^1.65.0",
"@vscode/test-electron": "^2.3.3",
"eslint": "^8.44.0",
"glob": "^7.2.3",
"mocha": "^9.2.2",
"typescript": "^4.9.5"
},
"dependencies": {
"dotenv": "^16.3.1",
"web3.storage": "^4.5.4"
}
}