-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.8 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
{
"name": "jspm-vscode",
"displayName": "JSPM Generator",
"description": "JSPM Generator VSCode Extension",
"version": "0.2.1",
"publisher": "JSPM",
"repository": "https://github.com/jspm/jspm-vscode",
"icon": "jspm.png",
"engines": {
"vscode": "^1.77.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:jspm-vscode.generate"
],
"browser": "./dist/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "JSPM",
"properties": {
"jspm.generate.preload": {
"description": "Whether or not to inject dependency preloads into resulting HTML.",
"type": "string",
"default": "ask",
"enum": [
"ask",
"always",
"never"
],
"enumDescriptions": [
"Ask whether to inject dependency preloads.",
"Always inject dependency preloads.",
"Never inject dependency preloads."
]
},
"jspm.generate.integrity": {
"description": "Whether or not to inject script integrity attributes into resulting HTML.",
"type": "boolean",
"default": true
},
"jspm.generate.defaultConditions": {
"description": "Default environment conditions for generated import maps.",
"type": "string",
"pattern": "^($|(\\s*\\w+\\s*)(,\\s*\\w+\\s*)*$)",
"patternErrorMessage": "Must be a comma-separated list of condition names.",
"default": "production,browser,module"
}
}
},
"commands": [
{
"command": "jspm-vscode.generate",
"title": "JSPM: Generate Import Map"
}
]
},
"devDependencies": {
"@types/vscode": "^1.84.2",
"chomp": "^0.2.17",
"jspm": "^3.2.0"
}
}