-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "fomantic-ui-snippets",
"displayName": "Fomantic-UI Snippets",
"description": "Fomantic-UI Snippets for VS Code",
"author": {
"name": "Jose Luis Tresserras Merino",
"url": "https://github.com/TheJltres"
},
"icon": "icon.png",
"publisher": "TheJltres",
"repository": {
"url": "https://github.com/fomantic/Fomantic-UI-vscode-snippets/"
},
"version": "1.1.1",
"scripts": {
"build": "webpack",
"start": "webpack && node ./index.js"
},
"engines": {
"vscode": "^1.48.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "html",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "html",
"path": "./snippets/fomantic-css.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/fomantic-js.code-snippets"
}
]
},
"devDependencies": {
"@types/node": "^14.0.26",
"typescript": "^3.9.7",
"webpack": "^5.88.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"ts-loader": "^8.0.1"
}
}