-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 3.89 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
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
128
129
130
131
132
133
134
135
{
"name": "livereload-server",
"publisher": "thebearingedge",
"displayName": "LiveReload Server",
"description": "Just LiveReload. For Visual Studio Code.",
"version": "0.3.2",
"engines": {
"vscode": "^1.35.0"
},
"categories": [
"Other"
],
"icon": "images/livereload-server.png",
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/index.js",
"contributes": {
"commands": [
{
"command": "livereload-server.openDocument",
"title": "Open with LiveReload Server",
"category": "LiveReload Server"
},
{
"command": "livereload-server.openFolder",
"title": "Open with LiveReload Server (root)",
"category": "LiveReload Server"
},
{
"command": "livereload-server.stop",
"title": "Stop Server",
"category": "LiveReload Server"
}
],
"menus": {
"commandPalette": [
{
"command": "livereload-server.openDocument",
"when": "workbenchState != empty && editorLangId == html"
},
{
"command": "livereload-server.stop"
}
],
"explorer/context": [
{
"command": "livereload-server.openDocument",
"group": "navigation@10",
"when": "workbenchState != empty && resourceLangId == html"
},
{
"command": "livereload-server.openFolder",
"group": "navigation@10",
"when": "workbenchState != empty && explorerResourceIsFolder"
}
],
"editor/context": [
{
"command": "livereload-server.openDocument",
"group": "navigation@10",
"when": "workbenchState != empty && editorLangId == html"
}
]
},
"configuration": {
"title": "LiveReload Server",
"properties": {
"liveReloadServer.port": {
"type": "number",
"markdownDescription": "Set the server port. `number`\n\r*usually between 1024 and 65535*",
"minimum": 1024,
"maximum": 65535,
"default": 5500
},
"liveReloadServer.delay": {
"type": "number",
"default": 100,
"minimum": 0,
"markdownDescription": "Milliseconds of delay before reload."
},
"liveReloadServer.hostname": {
"type": "string",
"default": "localhost",
"markdownDescription": "Customize the hostname to auto-open in the browser."
}
}
}
},
"scripts": {
"check": "tsc",
"vscode:prepublish": "npm run build",
"dev": "ts-node build.ts --watch --sourcemap",
"build": "ts-node build.ts --minify --sourcemap",
"lint": "eslint src --ext ts"
},
"dependencies": {
"connect-livereload": "^0.6.1",
"express": "^4.18.2",
"http-shutdown": "^1.2.2",
"livereload": "^0.9.3",
"livereload-js": "^3.4.1",
"serve-index": "^1.9.1"
},
"devDependencies": {
"@types/connect-livereload": "^0.6.0",
"@types/express": "^4.17.17",
"@types/livereload": "^0.9.2",
"@types/node": "^14.18.47",
"@types/serve-index": "^1.9.1",
"@types/vscode": "1.35",
"@types/yargs-parser": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"esbuild": "^0.14.54",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-unused-imports": "^1.1.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"yargs-parser": "^21.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thebearingedge/livereload-server-vscode.git"
},
"keywords": [],
"author": "thebearingedge <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/thebearingedge/livereload-server-vscode/issues"
},
"homepage": "https://github.com/thebearingedge/livereload-server-vscode#readme"
}