-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.7 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.7 KB
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
{
"name": "lit-snippets",
"version": "2.0.0",
"displayName": "Lit Snippets",
"description": "Lit Snippets for VS Code",
"categories": [
"Snippets"
],
"engines": {
"vscode": "^1.5.0"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#283197",
"theme": "dark"
},
"contributors": [
{
"name": "Herberth Obregón",
"email": "herberthobregon@gmail.com",
"url": "http://twitter.com/herberthobregon"
}
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./src/common.json"
},
{
"language": "typescript",
"path": "./src/common.json"
},
{
"language": "javascript",
"path": "./src/javascript.json"
},
{
"language": "typescript",
"path": "./src/typescript.json"
}
]
},
"keywords": [
"lit",
"litelement",
"snippets"
],
"repository": {
"type": "git",
"url": "https://github.com/litelement-dev/lit-snippets"
},
"author": "https://litelement.dev",
"publisher": "lit",
"license": "MIT",
"bugs": {
"url": "https://github.com/litelement-dev/lit-snippets/issues"
},
"homepage": "https://github.com/litelement-dev/lit-snippets#readme",
"devDependencies": {
"@vscode/vsce": "^3.2.2"
},
"scripts": {
"pack": "vsce package",
"build": "vsce package -o lit-snippets-v$npm_package_version.vsix",
"dist": "vsce publish"
}
}