-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.66 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
{
"name": "soberjs-vscode",
"displayName": "Sober.js",
"description": "为 Sober.js 组件库提供自动完成、悬停提示、代码片段等功能",
"version": "0.7.0",
"publisher": "lingbopro",
"author": {
"name": "lingbopro",
"email": "[email protected]",
"url": "https://github.com/lingbopro"
},
"repository": {
"type": "git",
"url": "https://github.com/lingbopro/soberjs-vscode"
},
"icon": "icon.png",
"keywords": [
"components",
"front-end",
"material design",
"material you",
"material",
"sober.js",
"sober",
"soberjs",
"web components"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lingbopro/soberjs-vscode/issues"
},
"homepage": "https://github.com/lingbopro/soberjs-vscode#readme",
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Snippets",
"Other"
],
"pricing": "Free",
"contributes": {
"snippets": [
{
"language": "html",
"path": "./snippets/html.code-snippets"
},
{
"language": "html",
"path": "./snippets/s-icon.code-snippets"
},
{
"language": "html",
"path": "./snippets/svg-icon.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/js-ts.code-snippets"
},
{
"language": "typescript",
"path": "./snippets/js-ts.code-snippets"
}
],
"html": {
"customData": [
"./custom-data/components.html-data.json"
]
},
"css": {
"customData": [
"./custom-data/components.css-data.json",
"./custom-data/global.css-data.json"
]
}
}
}