-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.62 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
{
"name": "material-web-vscode-snippets",
"displayName": "Material Web Components Snippets",
"description": "A material design 3(@material/web) snippets extension of visual studio code.",
"keywords": [
"google",
"material",
"snippets",
"material web components"
],
"author": "bre97-web",
"publisher": "bre97-web",
"license": "MIT",
"version": "0.0.5",
"icon": "src/images/icon/extension-icon-128.png",
"engines": {
"vscode": "^1.82.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bre97-web/material-web-vscode-snippets"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "html",
"path": "./snippets/snippets.code-snippets"
}
],
"html": {
"customData": ["./custom-data/html.html-data.json"]
},
"css": {
"customData": ["./custom-data/css.css-data.json"]
},
"viewsContainers": {
"activitybar": [
{
"title": "Material Web Components",
"id": "material-web-components-snippets",
"icon": "src/images/icon/extension-icon-32-outlined.svg"
}
]
},
"views": {
"material-web-components-snippets": [
{
"id": "tree",
"name": "Code Snippets",
"type": "tree"
}
]
}
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"dependencies": {
},
"devDependencies": {
"@types/vscode": "^1.73.0",
"typescript": "^5.2.2",
"@types/node": "^20.8.2"
}
}