-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.08 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
{
"name": "vscode-web-fs",
"displayName": "VS Code Web File System",
"description": "File System implementation for VSCode Web",
"version": "0.0.5",
"publisher": "0xgg",
"license": "MIT",
"enableProposedApi": true,
"engines": {
"vscode": "^1.54.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onFileSystem:memfs",
"onFileSystem:nativefs",
"onCommand:memfs.openFolder",
"onCommand:nativefs.openFolder"
],
"main": "./dist/extension.js",
"browser": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "nativefs.openFolder",
"title": "Open Folder",
"category": "NativeFS"
},
{
"command": "memfs.openFolder",
"title": "Open Folder",
"category": "MemFS"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "yarn run test-compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/glob-to-regexp": "^0.4.0",
"@types/istextorbinary": "^2.3.0",
"@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",
"eslint": "^7.19.0",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"path-browserify": "^1.0.1",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0"
},
"repository": {
"url": "[email protected]:0xGG/vscode-web-fs.git"
},
"dependencies": {
"@isomorphic-git/lightning-fs": "^4.4.1",
"dexie": "^3.0.3",
"escape-string-regexp": "^5.0.0",
"glob-to-regexp": "^0.4.1",
"istextorbinary": "^5.12.0",
"nanoid": "^3.1.22"
}
}