-
Notifications
You must be signed in to change notification settings - Fork 345
/
package.json
127 lines (127 loc) · 3.51 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
{
"name": "vscode-live-server-plus-plus",
"displayName": "Live Server++",
"description": "Static Server for your HTML CSS Project. It's Truly Live",
"version": "0.0.1",
"publisher": "ritwickdey",
"engines": {
"vscode": "^1.33.0"
},
"author": {
"name": "Ritwick Dey",
"email": "ritwickdey@outlook.com",
"url": "https://ritwickdey.github.io"
},
"icon": "images/vscode-live-server-plus-plus.png",
"categories": [
"Other"
],
"preview": true,
"galleryBanner": {
"color": "#3c1c59",
"theme": "dark"
},
"bugs": {
"url": "https://github.com/ritwickdey/vscode-live-server-plus-plus/issues",
"email": "ritwickdey@outlook.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ritwickdey/vscode-live-server-plus-plus.git"
},
"homepage": "https://ritwickdey.github.io/vscode-live-server-plus-plus",
"activationEvents": [
"*"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"copy-assets": "cpx \"./src/core/assets/**/*\" \"./out/core/assets\"",
"copy-assets:watch": "npm run copy-assets -- --w",
"compile": "tsc -p ./ && npm run copy-assets",
"watch": "npm run copy-assets && tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"main": "./out/extension/index.js",
"contributes": {
"commands": [
{
"command": "extension.live-server++.open",
"title": "Live Server++ : Open Server"
},
{
"command": "extension.live-server++.close",
"title": "Live Server++ : Close Server"
}
],
"configuration": {
"title": "LiveServer++",
"properties": {
"liveServer++.port": {
"type": "number",
"default": 5555,
"minimum": 0,
"maximum": 65535,
"description": "Use 0 for random port."
},
"liveServer++.browser": {
"type": [
"string",
"null"
],
"default": "default",
"enum": [
"default",
"chrome",
"firefox",
"microsoft-edge",
null
],
"description": "Set your favorite browser"
},
"liveServer++.root": {
"type": "string",
"default": "./",
"pattern": "./|/[^\\/]",
"description": "Change root of Live Server.\nE.g.: ./subfolder1/subfolder2"
},
"liveServer++.timeout": {
"type": "number",
"default": 300,
"description": "In millisecond."
},
"liveServer++.indexFile": {
"type": "string",
"default": "index.html",
"description": "Index File of server"
},
"liveServer++.reloadingStrategy": {
"type": "string",
"default": "hot",
"enum": [
"hot",
"partial-reload",
"reload"
],
"description": "Reloading Strategy.\n'hot' = Inplace DOM update[Experimental] \n 'partial-reload' = Reload DOM without refreshing page\n 'reload'= Full page reload"
}
}
}
},
"devDependencies": {
"@types/mime-types": "^2.1.0",
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"@types/open": "^6.1.0",
"@types/ws": "^6.0.1",
"cpx": "^1.5.0",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode": "^1.1.28"
},
"dependencies": {
"mime-types": "^2.1.22",
"open": "^6.1.0",
"ws": "^6.2.1"
}
}