-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "kalium19-snippets",
"displayName": "Kalium19: Snippets",
"description": "Расширение, позволяющее ускорить написание стилей на языке CSS-препроцессора SASS с использованием пакета Kalium19.",
"version": "0.0.1",
"publisher": "rx1310",
"author": "Haba Kudzaev",
"icon": ".github/logo.png",
"license": "MIT",
"engines": {
"vscode": "^1.69.0"
},
"categories": [
"Snippets"
],
"keywords": [
"SASS",
"SCSS",
"Kalium19",
"Snippets",
"rx1310"
],
"repository": {
"type": "git",
"url": "https://github.com/91muilak/snippets.vscode.git"
},
"bugs": {
"url": "https://github.com/91muilak/snippets.vscode/issues"
},
"contributes": {
"snippets": [
{
"language": "scss",
"path": "./snippets/animation.code-snippets"
},{
"language": "scss",
"path": "./snippets/prefixer.code-snippets"
},{
"language": "scss",
"path": "./snippets/other.code-snippets"
}
]
},
"scripts": {
"publish": "vsce publish",
"package": "vsce package"
}
}