forked from eclipse-theia/theia-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.31 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
{
"private": true,
"version": "1.12.1",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"author": "Rob Moran <github@thegecko.org>",
"homepage": "https://github.com/eclipse-theia/theia-blueprint#readme",
"bugs": {
"url": "https://github.com/eclipse-theia/theia/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eclipse-theia/theia-blueprint.git"
},
"engines": {
"yarn": "1.0.x || >=1.2.1",
"node": ">=12.14.1 <13"
},
"devDependencies": {
"@theia/cli": "1.12.1",
"lerna": "2.11.0",
"rimraf": "^2.7.1"
},
"scripts": {
"prepare": "lerna run prepare",
"lint": "lerna run lint",
"clean": "lerna run clean && rimraf node_modules",
"build": "lerna run build",
"bundle": "lerna run bundle",
"watch": "lerna run --parallel watch",
"start": "(cd electron-app && yarn start)",
"start:debug": "(cd electron-app && yarn start --log-level=debug)",
"test": "lerna run test",
"package": "(cd electron-app && yarn package)",
"deploy": "(cd electron-app && yarn deploy)",
"package:preview": "(cd electron-app && yarn package:preview)",
"download:plugins": "(cd electron-app && yarn download:plugins)"
},
"workspaces": [
"electron-app",
"theia-blueprint-updater",
"theia-blueprint-product"
]
}