-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
107 lines (107 loc) · 3.34 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
{
"name": "vscode-cdnjs",
"displayName": "cdnjs",
"description": "Search and embed libraries from cdnjs.com in Visual Studio Code",
"version": "0.18.0",
"publisher": "JakeWilson",
"author": "Jake Wilson",
"license": "MIT",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"keywords": [
"cdn",
"cdnjs",
"content delivery network"
],
"repository": {
"type": "git",
"url": "https://github.com/Jakobud/vscode-cdnjs.git"
},
"bugs": {
"url": "https://github.com/Jakobud/vscode-cdnjs/issues"
},
"homepage": "https://github.com/Jakobud/vscode-cdnjs",
"activationEvents": [
"onCommand:cdnjs.search",
"onCommand:cdnjs.recentLibraries",
"onCommand:cdnjs.clearCache"
],
"icon": "images/icon.png",
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "cdnjs.search",
"title": "Search for libraries",
"category": "cdnjs"
},
{
"command": "cdnjs.recentLibraries",
"title": "Recent libraries",
"category": "cdnjs"
},
{
"command": "cdnjs.clearCache",
"title": "Clear cache",
"category": "cdnjs"
}
],
"configuration": {
"type": "object",
"title": "cdnjs",
"properties": {
"cdnjs.quoteStyle": {
"type": "string",
"default": "single",
"enum": [
"single",
"double"
],
"description": "Quote style for HTML tags. Possible values are 'single' or 'double'"
},
"cdnjs.protocol": {
"type": "string",
"default": "https://",
"enum": [
"https://",
"http://",
"//"
],
"description": "Protocol for urls in HTML tags. Possible values are 'https://', 'http://' or '//'"
},
"cdnjs.maxRecentLibraries": {
"type": "integer",
"default": 10,
"description": "The maxmium number of Recent Libraries to save"
},
"cdnjs.cacheTime": {
"type": "integer",
"default": 21600,
"description": "The length of time (in seconds) to cache library and search results"
},
"cdnjs.integrity": {
"type": "boolean",
"default": true,
"description": "Include integrity attribute (SRI) in script and link tags"
},
"cdnjs.crossorigin": {
"type": "boolean",
"default": true,
"description": "Include crossorigin attribute in script and link tags"
}
}
}
},
"devDependencies": {
"vscode": "^1.1.33"
},
"dependencies": {
"got": "^9.6.0",
"open": "^6.2.0",
"vscode-cache": "^0.3.0"
}
}