-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.09 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "ocean-protocol",
"displayName": "ocean-protocol",
"description": "Easily publish assets and test your algorithms with the Ocean Protocol vscode extension.",
"version": "0.0.1",
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Other"
],
"main": "./dist/extension.js",
"contributes": {
"views": {
"ocean-protocol-view": [
{
"type": "webview",
"id": "oceanProtocolExplorer",
"name": "Ocean Protocol Explorer"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "ocean-protocol-view",
"title": "Ocean Protocol",
"icon": "/ocean-icon.svg"
}
]
},
"commands": [
{
"command": "ocean-protocol.searchAssets",
"title": "Ocean: Search Assets"
},
{
"command": "ocean-protocol.getAssetDetails",
"title": "Ocean: Get Asset Details"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"lint": "eslint src",
"test-vs": "vscode-test",
"test": "npm run mocha 'test/publish.test.ts'",
"mocha": "TS_NODE_PROJECT='./test/tsconfig.json' mocha --extensions ts --config=test/.mocharc.json --node-env=test --exit"
},
"devDependencies": {
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "20.x",
"@types/vscode": "^1.93.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"dotenv": "^16.4.5",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mocha": "^10.2.0",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.6.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^16.0.0",
"@chainsafe/libp2p-yamux": "^7.0.1",
"@libp2p/bootstrap": "^11.0.6",
"@libp2p/circuit-relay-v2": "^2.1.1",
"@libp2p/crypto": "^4.1.5",
"@libp2p/dcutr": "^2.0.6",
"@libp2p/identify": "^3.0.6",
"@libp2p/kad-dht": "^13.1.2",
"@libp2p/mdns": "^11.0.6",
"@libp2p/peer-id-factory": "^4.2.4",
"@libp2p/ping": "^2.0.6",
"@libp2p/tcp": "^10.0.7",
"@libp2p/websockets": "^9.0.6",
"@multiformats/multiaddr": "^12.3.1",
"@oceanprotocol/lib": "^3.3.3",
"axios": "^1.7.7",
"chai": "^4.3.10",
"cross-fetch": "^4.0.0",
"crypto": "^1.0.1",
"crypto-js": "^4.2.0",
"ethers": "^5.7.2",
"fs": "^0.0.1-security",
"ip": "^2.0.1",
"it-pipe": "^3.0.1",
"libp2p": "^2.1.5",
"node-polyfill-webpack-plugin": "^4.0.0",
"os": "^0.1.2",
"path": "^0.12.7",
"private-ip": "^3.0.2"
},
"activationEvents": [
"onCommand:ocean-protocol.searchAssets",
"onCommand:ocean-protocol.getAssetDetails"
]
}