-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.48 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
{
"name": "1clicknft",
"displayName": "1clickNFT",
"description": "Upload NFT data to IPFS",
"publisher": "1clickNFT",
"version": "0.1.1",
"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:nft.token",
"onCommand:nft.select",
"onCommand:nft.upload"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "nft.token",
"title": "nft.storage API token",
"category": "NFT"
},
{
"command": "nft.select",
"title": "Select folder",
"category": "NFT"
},
{
"command": "nft.upload",
"title": "Upload to IPFS",
"category": "NFT"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/p2plabsxyz/1clicknft.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.45.0",
"glob": "^7.2.3",
"mocha": "^9.2.2",
"typescript": "^4.9.5"
},
"dependencies": {
"dotenv": "^16.3.1",
"files-from-path": "^0.2.6",
"nft.storage": "^7.1.0"
}
}