-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.07 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
{
"private": true,
"version": "1.12.1",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"author": "Rob Moran <[email protected]>",
"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",
"test": "lerna run test",
"download:plugins": "yarn --cwd applications/browser theia download:plugins",
"start:browser": "yarn --cwd applications/browser run start"
},
"workspaces": [
"theia-extensions/*",
"applications/*"
]
}