forked from brackets-userland/brackets-electron
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
131 lines (131 loc) · 4.49 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "quadre",
"productName": "Quadre",
"description": "Quadre",
"author": "Quadre Team <ficristo.work@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/quadre-code/quadre",
"version": "2.0.0-alpha.7",
"apiVersion": "1.15.0",
"electronVersion": "31.4.0",
"issues": {
"url": "https://github.com/quadre-code/quadre/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/quadre-code/quadre.git"
},
"main": "./dist/index.js",
"bin": {
"brackets": "./dist/index.js"
},
"scripts": {
"postinstall": "gulp install",
"webpack": "webpack --config webpack.dev.ts",
"tsc": "tsc --project src && npm run webpack",
"build": "gulp copy-src-dist && gulp build && npm run tsc",
"build-optimized": "npm run build && gulp optimize",
"lint": "gulp eslint",
"format": "gulp format",
"dev": "concurrently --kill-others \"gulp watch\" \"tsc --watch --project src\" \"npm run webpack -- --watch\"",
"start": "electron .",
"pack": "npm run build-optimized && electron-builder --dir",
"dist": "npm run build-optimized && electron-builder",
"publish-win": "npm run build-optimized && electron-builder -w --publish onTagOrDraft",
"publish-mac": "npm run build-optimized && electron-builder -m --publish onTagOrDraft",
"publish-linux": "npm run build-optimized && electron-builder -l --publish onTagOrDraft",
"test:prepare:ci": "gulp test && gulp copy-test-dist",
"test:node": "jasmine dist/www/extensibility/node/spec/*.spec.js",
"test:unit": "gulp test-integration --suite=unit --spec=all --results=TEST-unit",
"test:integration": "gulp test-integration --suite=integration --spec=all --results=TEST-integration",
"test:mainview": "gulp test-integration --suite=mainview --spec=all --results=TEST-mainview",
"test:livepreview": "gulp test-integration --suite=livepreview --spec=all --results=TEST-livepreview",
"test:performance": "gulp test-integration --suite=performance --spec=all --results=TEST-performance",
"test:extension": "gulp test-integration --suite=extension --spec=all --results=TEST-extension",
"test:all": "gulp test-integration --results=TEST-all"
},
"defaultExtensions": {
"quadre-eslint": "7.0.0",
"quadre-git": "1.0.0-alpha.3"
},
"dependencies": {
"@electron/remote": "^2.1.2",
"anymatch": "1.3.0",
"async": "2.3.0",
"chokidar": "^3.6.0",
"css-loader": "^7.1.2",
"decompress-zip": "~0.3.3",
"electron-updater": "^6.3.4",
"fs-extra": "^10.1.0",
"isbinaryfile": "3.0.2",
"lodash": "^4.17.21",
"node-machine-id": "^1.1.12",
"npm": "^10.8.2",
"portscanner": "^2.2.0",
"request": "^2.88.0",
"requirejs": "^2.3.7",
"semver": "^7.3.8",
"strip-bom": "^4.0.0",
"temp": "0.9.4",
"tern": "^0.21.0",
"trash": "^4.3.0",
"vscode-languageserver-protocol": "~3.14.1",
"ws": "2.3.1",
"xml2js": "0.4.17",
"yargs": "^17.6.2"
},
"devDependencies": {
"@electron/rebuild": "^3.6.0",
"@types/anymatch": "^1.3.1",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.188",
"@types/webpack-node-externals": "^3.0.4",
"@types/ws": "0.0.40",
"@types/xml2js": "^0.4.11",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"concurrently": "^7.5.0",
"cross-spawn": "^7.0.3",
"css-minimizer-webpack-plugin": "^7.0.0",
"electron": "^31.4.0",
"electron-builder": "^25.0.5",
"electron-packager": "^17.1.1",
"eslint": "^8.57.0",
"eslint-config-moody-tsx": "^2.1.0",
"eslint-plugin-react": "^7.35.0",
"fancy-log": "^2.0.0",
"get-port": "^4.2.0",
"glob": "^7.1.4",
"gulp": "^4.0.2",
"gulp-eslint-new": "^2.3.0",
"gulp-prettier": "^5.0.0",
"gulp-rename": "^2.0.0",
"gulp-watch": "^5.0.1",
"iconv-lite": "^0.6.3",
"jasmine": "^5.2.0",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"mini-css-extract-plugin": "^2.9.1",
"node-abi": "^3.66.0",
"plugin-error": "^2.0.1",
"rewire": "^6.0.0",
"rimraf": "^3.0.2",
"tar": "^6.1.12",
"transpile-webpack-plugin": "^1.1.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vscode-languageserver": "5.3.0-next.1",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0",
"webpack-remove-empty-scripts": "^1.0.4",
"xmldoc": "0.1.2"
},
"overrides": {
"@electron/rebuild": {
"node-gyp": "10.1.0"
}
}
}