-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.91 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
{
"name": "dropbox",
"displayName": "Dropbox",
"description": "Dropbox file system provider",
"version": "0.0.2",
"repository": "https://github.com/kzvi/vsc-dropbox",
"publisher": "kzvi",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onFileSystem:dropbox",
"onCommand:dropbox.open",
"onCommand:dropbox.authenticate",
"onCommand:dropbox.unauthenticate"
],
"browser": "./dist/web/extension.js",
"contributes": {
"commands": [
{
"command": "dropbox.open",
"title": "Dropbox: Open Dropbox"
},
{
"command": "dropbox.authenticate",
"title": "Dropbox: Authenticate"
},
{
"command": "dropbox.unauthenticate",
"title": "Dropbox: Unauthenticate"
}
]
},
"scripts": {
"test": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/web/test/suite/index.js",
"pretest": "npm run compile-web",
"vscode:prepublish": "npm run package-web",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src --ext ts",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. ."
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/vscode": "^1.70.0",
"@types/webpack-env": "^1.17.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@vscode/test-web": "^0.0.29",
"assert": "^2.0.0",
"eslint": "^8.20.0",
"mocha": "^10.0.0",
"process": "^0.11.10",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"async-mutex": "^0.3.2",
"crypto-browserify": "^3.12.0",
"dropbox": "^10.32.0",
"stream-browserify": "^3.0.0"
}
}