-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "create-vscode-editor",
"version": "0.9.0",
"description": "A custom editor for VS Code",
"author": "@seflless",
"repository": {
"type": "git",
"url": "git+https://github.com/seflless/create-vscode-editor.git"
},
"bugs": {
"url": "https://github.com/seflless/create-vscode-editor/issues"
},
"homepage": "https://github.com/seflless/create-vscode-editor",
"license": "MIT",
"keywords": [],
"bin": "./bin/generate.mjs",
"scripts": {
"start": "concurrently npm:start:*",
"start:editor": "node scripts/dev-editor.mjs -w",
"start:extension": "code . && node scripts/dev-extension.mjs -w",
"build": "yarn build:editor && yarn build:extension",
"build:editor": "node scripts/build-editor.mjs",
"build:extension": "node scripts/build-extension.js",
"package": "yarn build && node scripts/package.js"
},
"dependencies": {
"chalk": "^4.1.2",
"fs-extra": "^10.0.0",
"rfdc": "^1.3.0"
},
"devDependencies": {
"@types/node": "^14.14.35",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"concurrently": "^6.4.0",
"create-serve": "1.0.1",
"esbuild": "^0.13.8",
"esbuild-serve": "^1.0.1",
"react": ">=16.8",
"react-dom": "^16.8 || ^17.0",
"typescript": "4.2.3",
"vsce": "^2.3.0"
},
"gitHead": "a7dac0f83ad998e205c2aab58182cb4ba4e099a6"
}