-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
50 lines (50 loc) · 1.72 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
{
"name": "vscode-web-with-native-filesystem",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:0xGG/vscode-web-with-native-filesystem.git",
"author": "Yiyi Wang <[email protected]>",
"license": "MIT",
"scripts": {
"start": "http-server dist",
"build:extensions": "node ./deploy_extensions.js",
"build:splash-screen": "npx pwa-asset-generator logo.svg --favicon --opaque false --dark-mode --padding '4%' ./assets -i ./index.html -m manifest.json",
"build:dev": "yarn build:extensions && NODE_ENV='development' webpack",
"build": "yarn build:extensions && PUBLIC_URL='/vscode-pwa' NODE_ENV='production' webpack",
"gh-pages:deploy": "yarn build && gh-pages-clean && gh-pages -d $PWD/dist -o origin"
},
"dependencies": {
"semver-umd": "^5.5.7",
"vscode-oniguruma": "^1.5.1",
"vscode-textmate": "^5.4.0",
"vscode-web": "^1.55.0"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/vscode": "^1.55.0",
"@types/wicg-file-system-access": "^2020.9.1",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.1",
"eslint": "^7.19.0",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"fs-extra": "^9.1.0",
"gh-pages": "^3.1.0",
"glob": "^7.1.6",
"html-webpack-plugin": "^5.3.1",
"imports-loader": "^2.0.0",
"mocha": "^8.2.1",
"pwa-asset-generator": "^4.1.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.1.0",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0",
"webpack": "^5.31.2",
"webpack-cli": "^4.6.0",
"workbox-webpack-plugin": "^6.1.2"
}
}