-
-
Notifications
You must be signed in to change notification settings - Fork 163
/
package.json
70 lines (70 loc) · 1.51 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
{
"name": "Angular2",
"publisher": "johnpapa",
"displayName": "Angular Snippets (Version 18)",
"description": "Angular version 18 snippets by John Papa",
"version": "18.0.2",
"icon": "images/angular-shield.png",
"galleryBanner": {
"color": "#0273D4",
"theme": "dark"
},
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/johnpapa/vscode-angular-snippets.git"
},
"keywords": [
"Angular",
"Angular 18",
"TypeScript",
"HTML"
],
"engines": {
"vscode": "^1.40.0"
},
"scripts": {
"package": "npx vsce package",
"publish": "npx vsce publish",
"postinstall": "node ./node_modules/vscode/bin/install",
"open-in-browser": "vscode-test-web --extensionDevelopmentPath=. ."
},
"extensionKind": [
"ui",
"workspace"
],
"categories": [
"Snippets",
"Other"
],
"contributes": {
"snippets": [
{
"language": "typescript",
"path": "./snippets/typescript.json"
},
{
"language": "javascript",
"path": "./snippets/javascript.json"
},
{
"language": "jsonc",
"path": "./snippets/jsonc.json"
},
{
"language": "html",
"path": "./snippets/html.json"
},
{
"language": "dockerfile",
"path": "./snippets/dockerfile.json"
}
]
},
"devDependencies": {
"@types/node": "^20.14.10",
"@vscode/test-web": "^0.0.56",
"typescript": "^5.5.3",
"vscode": "*"
}
}