-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.54 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
{
"name": "vscode-webdav",
"displayName": "WebDAV Workspace",
"description": "WebDAV file system provider",
"version": "1.0.3",
"author": {
"name": "Miro Paskov"
},
"license": "MIT",
"publisher": "kowd",
"engines": {
"vscode": "^1.71.0"
},
"categories": [
"Other"
],
"keywords": [
"WebDAV"
],
"activationEvents": [
"onFileSystem:webdav",
"onFileSystem:webdavs",
"onCommand:extension.remote.webdav.open",
"onCommand:extension.remote.webdav.resetAuth"
],
"main": "./out/main.js",
"contributes": {
"commands": [
{
"command": "extension.remote.webdav.open",
"title": "Open WebDAV Workspace...",
"category": "Remote WebDAV"
},
{
"command": "extension.remote.webdav.resetAuth",
"title": "Reset WebDAV Authentication ...",
"category": "Remote WebDAV"
}
],
"viewsWelcome": [
{
"view": "explorer",
"contents": "Open a WebDAV folder as a remove workspace.\n[Open WebDAV](command:extension.remote.webdav.open)",
"when": "workspaceFolderCount == 0"
}
]
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "npm run copy-sspi && esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node --loader:.node=copy",
"copy-sspi": "node ./src/bundle.js",
"build": "npm run esbuild-base -- --sourcemap",
"watch": "npm run esbuild-base -- --sourcemap --watch",
"lint": "eslint src --ext ts",
"test": "jest"
},
"icon": "icon.png",
"badges": [],
"repository": {
"type": "git",
"url": "https://github.com/kowd/vscode-webdav"
},
"bugs": {
"url": "https://github.com/kowd/vscode-webdav/issues"
},
"readmeFilename": "README.md",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "16.x",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"esbuild": "^0.17.1",
"eslint": "^8.28.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.3"
},
"dependencies": {
"date-fns": "^2.29.3",
"node-expose-sspi": "^0.1.60",
"webdav": "^4.11.2"
}
}