-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 863 Bytes
/
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
{
"name": "theia-port-proxy-extension",
"keywords": [
"theia-extension"
],
"version": "0.0.21",
"files": [
"lib",
"src"
],
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"homepage": "https://github.com/jonrad/theia-server-proxy-extension",
"dependencies": {
"@theia/core": "1.18.0",
"@theia/navigator": "1.18.0",
"http-proxy-middleware": "^1.0.6",
"theia-server-proxy-extension": "^0.0.21"
},
"devDependencies": {
"rimraf": "latest",
"typescript": "latest"
},
"scripts": {
"prepare": "test -n \"$IGNORE_PREPARE\" || (yarn run clean && yarn run build)",
"clean": "rimraf lib",
"build": "tsc",
"watch": "tsc -w"
},
"theiaExtensions": [
{
"backend": "lib/node/port-proxy-backend-module",
"frontend": "lib/browser/port-proxy-frontend-module"
}
]
}