-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "xterm-electron-sample",
"productName": "Xterm Electron Sample",
"version": "1.0.0",
"private": true,
"description": "Sample Electron app for running xterm.js",
"homepage": "https://github.com/princjef/xterm-electron-sample",
"repository": {
"type": "git",
"url": "git://github.com/princjef/xterm-electron-sample.git"
},
"main": "dist/main",
"scripts": {
"postinstall": "electron-rebuild",
"clean": "rimraf dist",
"lint": "tslint --project tsconfig.json --fix",
"prebuild": "npm run clean",
"build-renderer": "webpack",
"build-main": "tsc -p tsconfig-server.json",
"build": "npm run build-renderer && npm run build-main",
"postbuild": "npm run lint",
"watch-main": "tsc -p tsconfig-server.json -w",
"watch-renderer": "webpack -w",
"watch": "concurrently -n main,renderer \"npm run watch-main\" \"npm run watch-renderer\"",
"start": "electron ."
},
"keywords": [
"terminal",
"electron",
"xterm"
],
"author": {
"name": "Jeff Principe",
"email": "[email protected]",
"url": "https://github.com/princjef"
},
"license": "MIT",
"devDependencies": {
"@types/lodash.debounce": "^4.0.4",
"awesome-typescript-loader": "^5.2.1",
"concurrently": "^4.1.0",
"electron": "^4.0.1",
"electron-rebuild": "^1.8.2",
"rimraf": "^2.6.3",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.2.4",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"node-pty": "^0.8.0",
"xterm": "^3.10.1",
"xterm-addon-ligatures": "0.1.0-beta-2"
}
}