-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 4.01 KB
/
package.json
File metadata and controls
142 lines (142 loc) · 4.01 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "ocean-protocol-vscode-extension",
"publisher": "OceanProtocol",
"displayName": "Ocean Orchestrator",
"description": "Run affordable AI jobs from your editor with a one-click workflow and pay-per-use mechanism.",
"version": "0.2.11",
"engines": {
"vscode": "^1.96.0"
},
"icon": "logo.png",
"repository": {
"type": "git",
"url": "https://github.com/oceanprotocol/ocean-orchestrator"
},
"keywords": [
"ocean",
"orchestrator",
"ocean orchestrator",
"ocean orchestrator vscode extension",
"ocean orchestrator cursor extension",
"ocean orchestrator antigravity extension",
"ocean orchestrator windsurf extension",
"gpu",
"ai",
"docker",
"compute",
"run a compute job"
],
"categories": [
"Other"
],
"main": "./dist/extension.js",
"contributes": {
"views": {
"ocean-protocol-view": [
{
"type": "webview",
"id": "oceanOrchestrator",
"name": "Ocean Orchestrator"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "ocean-protocol-view",
"title": "Ocean Orchestrator",
"icon": "logo.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 . --module commonjs --moduleResolution node --outDir out",
"watch-tests": "tsc -p . -w --module commonjs --moduleResolution node --outDir out",
"lint": "eslint src",
"test-vs": "vscode-test",
"test": "vscode-test --extensionDevelopmentPath=. --extensionTestsPath=out/test/run.test.js",
"pretest": "npm run compile-tests",
"posttest": "npm run lint",
"build": "npx vsce package",
"publish": "npx vsce publish",
"publish:ovsx": "npx ovsx publish",
"publish:all": "npm run publish && npm run publish:ovsx"
},
"devDependencies": {
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/sinon": "^17.0.3",
"@types/vscode": "^1.96.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.3.0",
"prettier": "^3.3.3",
"sinon": "^17.0.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.6.2",
"webpack": "^5.105.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^17.0.0",
"@chainsafe/libp2p-yamux": "^8.0.1",
"@libp2p/bootstrap": "^12.0.10",
"@libp2p/circuit-relay-v2": "^4.1.2",
"@libp2p/crypto": "^5.1.13",
"@libp2p/dcutr": "^3.0.9",
"@libp2p/identify": "^4.0.9",
"@libp2p/kad-dht": "^16.1.2",
"@libp2p/mdns": "^12.0.10",
"@libp2p/peer-id-factory": "^4.2.4",
"@libp2p/ping": "^3.0.10",
"@libp2p/tcp": "^11.0.10",
"@libp2p/tls": "^3.0.10",
"@libp2p/websockets": "^10.1.2",
"@multiformats/multiaddr": "^13.0.1",
"@oceanprotocol/lib": "8.0.6",
"chai": "^4.3.10",
"cross-fetch": "^4.0.0",
"crypto": "^1.0.1",
"crypto-js": "^4.2.0",
"ethers": "^6.15.0",
"fs": "^0.0.1-security",
"ip": "^2.0.1",
"jsonwebtoken": "^9.0.2",
"libp2p": "^3.1.2",
"mock-require": "^3.0.3",
"node-polyfill-webpack-plugin": "^4.0.0",
"os": "^0.1.2",
"path": "^0.12.7",
"posthog-node": "^5.21.2",
"private-ip": "^3.0.2",
"tar": "^7.5.11",
"uint8arrays": "^4.0.6"
},
"activationEvents": [
"onCommand:ocean-protocol.searchAssets",
"onCommand:ocean-protocol.getAssetDetails"
]
}