forked from sedwards2009/extraterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "extraterm",
"version": "0.35.2",
"description": "A terminal",
"author": "Simon Edwards",
"license": "MIT",
"main": "extraterm/main.js",
"repository": {
"type": "git",
"url": "git://github.com/sedwards2009/extraterm.git"
},
"scripts": {
"run": "electron extraterm/src/main_process/Main.js --dev-tools",
"build": "wsrun build --exclude-missing --stages",
"electron-rebuild": "node ./node_modules/electron-rebuild/lib/src/cli.js -o node-pty,font-manager -f -v 2.0.0",
"package": "node build_scripts/build_packages.js"
},
"jshintConfig": {
"esversion": 6
},
"resolutions": {
"@types/node": "7.0.52",
"typescript": "2.8.3",
"node-abi": "2.4.0"
},
"private": true,
"workspaces": [
"extraterm",
"packages/*",
"extensions/*"
],
"dependencies//": "These dependencies are listed here so that electron-rebuild can find them.",
"dependencies": {
"font-manager": "0.2.2",
"electron-rebuild": "1.7.3",
"node-abi": "2.4.0"
},
"optionalDependencies//": "These dependencies are listed here so that electron-rebuild can find them.",
"optionalDependencies": {
"node-pty": "0.7.4"
},
"devDependencies": {
"electron": "2.0.0",
"electron-packager": "11.1.0",
"git-repo-info": "^1.4.1",
"wsrun": "^3.0.0"
}
}