-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 2.95 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "local-web-server",
"version": "0.0.1",
"publisher": "skyclouds2001",
"engines": {
"vscode": "^1.102.0"
},
"license": "MIT",
"displayName": "Local Web Server",
"description": "A local deployed web server for develop",
"categories": [
"Other"
],
"keywords": [
"web server"
],
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"preview": false,
"main": "./out/extension.js",
"browser": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "local-web-server.startServer",
"title": "Start Local Web Server"
},
{
"command": "local-web-server.stopServer",
"title": "Stop Local Web Server"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "local-web-server-management",
"title": "Local Web Server Manager",
"icon": "static/web_server.svg"
}
]
},
"views": {
"local-web-server-management": [
{
"type": "tree",
"id": "local-web-server-list",
"name": "List"
},
{
"type": "webview",
"id": "local-web-server-configuration",
"name": "Configuration"
}
]
}
},
"activationEvents": [
"onStartupFinished"
],
"badges": [],
"markdown": "github",
"qna": "marketplace",
"sponsor": {
"url": "https://github.com/sponsors/skyclouds2001"
},
"dependencies": {},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.102.0",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2",
"eslint": "^9.25.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0"
},
"extensionPack": [],
"extensionDependencies": [],
"extensionKind": [
"ui",
"workspace"
],
"scripts": {
"vscode:prepublish": "pnpm run compile",
"vscode:uninstall": "echo 'Uninstalling Local Web Server Extension'",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "pnpm run compile && pnpm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"icon": "static/web_server.png",
"pricing": "Free",
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": {
"supported": true
}
},
"homepage": "https://github.com/skyclouds2001/local-web-server/blob/master/README.md",
"bugs": {
"url": "https://github.com/skyclouds2001/local-web-server/issues",
"email": "skyclouds2001@163.com"
},
"repository": {
"type": "git",
"url": "https://github.com/skyclouds2001/local-web-server.git"
},
"author": {
"name": "skyclouds2001",
"email": "skyclouds2001@163.com",
"url": "https://skyclouds2001.github.io/"
},
"contributors": [
"skyclouds2001"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/skyclouds2001"
},
"private": true,
"packageManager": "pnpm@9.12.1"
}