-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
239 lines (239 loc) · 8.77 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
{
"name": "opensumi-ide",
"version": "0.0.1",
"description": "桌面端 IDE",
"main": "./app/bootstrap/main.js",
"scripts": {
"start": "cross-env IS_DEV=true KTLOG_SHOW_DEBUG=true electron --inspect=9229 .",
"watch:browser": "webpack --config ./build/webpack.browser.config.ts -w --mode=development",
"watch:main": "webpack --config ./build/webpack.main.config.ts -w --mode=development",
"watch": "run-p watch:*",
"watch-editor": "cd src/editor && run-p watch:* && cd ../..",
"build-editor": "cd src/editor && run-p build && cd ../..",
"build:browser": "webpack --config ./build/webpack.browser.config.ts",
"build:main": "webpack --config ./build/webpack.main.config.ts",
"build": "run-p build-editor && run-p build:*",
"build-a": "run-p build:*",
"build-prod": "cross-env BUILD_ENV=production run-p build-editor && cross-env NODE_OPTIONS='--max-old-space-size=16384' BUILD_ENV=production run-p build:*",
"clean": "rimraf -rf ./out",
"pack": "npm run clean && npm run build-prod && npm run download-extension && ts-node scripts/pack.js",
"pack:local": "npm run clean && npm run download-extension && cross-env BUILD_ENV=development npm run build && cross-env CSC_IDENTITY_AUTO_DISCOVERY=false ts-node scripts/pack.ts",
"pack:local-simple": "cross-env CSC_IDENTITY_AUTO_DISCOVERY=false ts-node scripts/pack.ts",
"pack:beta": "cross-env BUILD_ENV=beta npm run pack",
"pack:prod": "cross-env BUILD_ENV=production npm run pack",
"link-local": "ts-node ./scripts/link-local.ts",
"rebuild-native": "ts-node ./scripts/rebuild-native.ts --target=electron",
"changelog": "node ./scripts/changelog/index.js",
"download-extension": "cross-env DEBUG=InstallExtension node scripts/download-extensions.js",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src",
"lint:fix": "npm run lint -- --fix",
"postinstall": "yarn rebuild-native -- --force-rebuild=true && yarn download-extension && cd src/editor && yarn && cd ../.."
},
"repository": {
"type": "git",
"url": "[email protected]:opensumi/app-desktop.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"resolutions": {
"got": "8.3.1",
"@opensumi/vscode-ripgrep": "1.4.0"
},
"dependencies": {
"@opensumi/ide-addons": "2.22.5",
"@opensumi/ide-comments": "2.22.5",
"@opensumi/ide-core-browser": "2.22.5",
"@opensumi/ide-core-common": "2.22.5",
"@opensumi/ide-core-electron-main": "2.22.5",
"@opensumi/ide-core-node": "2.22.5",
"@opensumi/ide-debug": "2.22.5",
"@opensumi/ide-decoration": "2.22.5",
"@opensumi/ide-editor": "2.22.5",
"@opensumi/ide-electron-basic": "2.22.5",
"@opensumi/ide-explorer": "2.22.5",
"@opensumi/ide-express-file-server": "2.22.5",
"@opensumi/ide-extension": "2.22.5",
"@opensumi/ide-extension-manager": "2.22.5",
"@opensumi/ide-extension-storage": "2.22.5",
"@opensumi/ide-file-scheme": "2.22.5",
"@opensumi/ide-file-search": "2.22.5",
"@opensumi/ide-file-service": "2.22.5",
"@opensumi/ide-file-tree-next": "2.22.5",
"@opensumi/ide-i18n": "2.22.5",
"@opensumi/ide-keymaps": "2.22.5",
"@opensumi/ide-logs": "2.22.5",
"@opensumi/ide-main-layout": "2.22.5",
"@opensumi/ide-markdown": "2.22.5",
"@opensumi/ide-markers": "2.22.5",
"@opensumi/ide-menu-bar": "2.22.5",
"@opensumi/ide-monaco": "2.22.5",
"@opensumi/ide-monaco-enhance": "2.22.5",
"@opensumi/ide-opened-editor": "2.22.5",
"@opensumi/ide-outline": "2.22.5",
"@opensumi/ide-output": "2.22.5",
"@opensumi/ide-overlay": "2.22.5",
"@opensumi/ide-preferences": "2.22.5",
"@opensumi/ide-process": "2.22.5",
"@opensumi/ide-quick-open": "2.22.5",
"@opensumi/ide-scm": "2.22.5",
"@opensumi/ide-search": "2.22.5",
"@opensumi/ide-static-resource": "2.22.5",
"@opensumi/ide-status-bar": "2.22.5",
"@opensumi/ide-storage": "2.22.5",
"@opensumi/ide-task": "2.22.5",
"@opensumi/ide-terminal-next": "2.22.5",
"@opensumi/ide-testing": "2.22.5",
"@opensumi/ide-theme": "2.22.5",
"@opensumi/ide-toolbar": "2.22.5",
"@opensumi/ide-userstorage": "2.22.5",
"@opensumi/ide-utils": "2.22.5",
"@opensumi/ide-variable": "2.22.5",
"@opensumi/ide-webview": "2.22.5",
"@opensumi/ide-workspace": "2.22.5",
"@opensumi/ide-workspace-edit": "2.22.5",
"@opensumi/vscode-ripgrep": "1.4.0",
"@parcel/watcher": "2.0.5",
"antd": "4.16.10",
"colors": "^1.4.0",
"cross-spawn": "^7.0.3",
"download": "^8.0.0",
"filemanager-webpack-plugin": "^7.0.0-beta.0",
"fs-extra": "^8.1.0",
"get-port": "^5.1.1",
"globby": "^11.0.4",
"highlight.js": "^10.7.2",
"iconv-lite": "0.6.0",
"jsonc-parser": "^3.0.0",
"lodash": "^4.17.20",
"lodash.groupby": "^4.6.0",
"lodash.uniqby": "^4.7.0",
"monaco-editor-core": "^0.17.0",
"node-fetch": "^2.6.0",
"npminstall": "^4.11.0",
"on-exit": "^1.0.1",
"quick-chrome-cookies-secure": "^1.0.3",
"react-lazylog": "^4.5.3",
"remarkable": "^2.0.1",
"request": "^2.88.2",
"semver": "^7.3.2",
"simple-git": "^2.21.0",
"sudo-prompt": "^9.2.1",
"tiny-pinyin": "^1.3.2",
"tree-kill": "^1.2.2",
"yauzl": "^2.10.0"
},
"devDependencies": {
"7zip-min": "^1.2.0",
"@ant-design/icons": "^4.7.0",
"@babel/core": "^7.17.10",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@shockpkg/hdi-mac": "^1.7.1",
"@types/classnames": "^2.2.11",
"@types/cross-spawn": "^6.0.2",
"@types/electron-devtools-installer": "^2.2.0",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.171",
"@types/node": "^14.6.4",
"@types/node-fetch": "^2.5.7",
"@types/react-dom": "^18.0.0",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.8",
"@types/remarkable": "^2.0.1",
"@types/request-promise": "^4.1.8",
"@types/semver": "^7.3.6",
"@types/tar": "^6.1.1",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^3.11.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^4.1.0",
"@vscode/sudo-prompt": "^9.3.1",
"asar": "^3.0.3",
"await-event": "^2.1.0",
"babel-loader": "^8.2.5",
"babel-plugin-import": "^1.13.5",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-parameter-decorator": "^1.0.16",
"buffer": "^6.0.3",
"bufferutil": "^4.0.2",
"command-exists": "^1.2.9",
"copy-dir": "^1.3.0",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"css-loader": "^2.1.1",
"css-minimizer-webpack-plugin": "^1.1.5",
"electron": "17.4.2",
"electron-builder": "^23.3.3",
"electron-devtools-installer": "^3.2.0",
"electron-notarize": "^1.0.0",
"encoding": "^0.1.13",
"eslint": "8.3.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"file-loader": "^3.0.1",
"fork-ts-checker-webpack-plugin": "^7.2.11",
"fs-extra": "^8.1.0",
"glob-to-regexp": "0.4.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^4.3.6",
"is-dark-color": "^1.2.0",
"jest": "^26.6.3",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"lint-staged": ">=10",
"mini-css-extract-plugin": "^2.6.0",
"mobx-react-lite": "^1.3.1",
"nanoid": "^3.3.4",
"node-gyp": "^7.1.2",
"npm-run-all": "^4.1.5",
"parse-github-url": "^1.0.2",
"playwright-electron": "^0.5.0",
"prettier": "^2.5.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-schema-based-json-editor": "^7.25.2",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"remote-redux-devtools": "^0.5.16",
"rimraf": "^3.0.0",
"sass-loader": "10.2.1",
"spawn-sync": "^2.0.0",
"strip-html-comments": "^1.0.0",
"style-loader": "^0.23.1",
"style-resources-loader": "^1.2.1",
"tar": "^6.1.11",
"ts-jest": "^26.4.4",
"ts-loader": "^9.3.0",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.8.0",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"tslint": "^6.1.3",
"typescript": "4.6.4",
"typescript-plugin-css-modules": "^3.4.0",
"url-loader": "^4.1.0",
"utf-8-validate": "^5.0.3",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.9.2",
"yargs": "^15.4.1"
}
}