-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.56 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "neptunecss-snippets",
"displayName": "Neptune snippets",
"publisher": "NeptuneCSS",
"icon": "icon.png",
"description": "VS Code snippets for Neptune CSS",
"version": "2.3.0",
"scripts": {
"package": "C:/Users/colin/AppData/Roaming/npm/vsce package"
},
"license": "MIT",
"author": "CGWebDev2003",
"repository": {
"type": "git",
"url": "git+https://github.com/neptune-css/neptune-snippets.git"
},
"bugs": {
"url": "https://github.com/neptune-css/neptune-snippets/issues"
},
"homepage": "https://marketplace.visualstudio.com/items?itemName=NeptuneCSS.neptune-snippets",
"engines": {
"vscode": "^1.77.0"
},
"categorie": "Snippets",
"optionalDependencies": {
"neptunecss": "^1.0.1",
"neptunecss-js": "^1.0.2"
},
"contributes": {
"snippets": [
{
"language": "html",
"path": "./snippets/animations/import.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/animations/animations.code-snippets"
},
{
"language": "html",
"path": "./snippets/html/import.code-snippets"
},
{
"language": "html",
"path": "./snippets/html/badges.code-snippets"
},
{
"language": "html",
"path": "./snippets/html/buttons.code-snippets"
},
{
"language": "html",
"path": "./snippets/html/examples.code-snippets"
},
{
"language": "html",
"path": "./snippets/html/links.code-snippets"
},
{
"language": "html",
"path": "./snippets/html/progressbars.code-snippets"
},
{
"language": "html",
"path": "./snippets/html/spinner.code-snippets"
},
{
"language": "html",
"path": "./snippets/html/toasts.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/js/import_js.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/js/badges_js.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/js/buttons_js.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/js/links_js.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/js/progressbars_js.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/js/spinner_js.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/js/toasts_js.code-snippets"
}
]
}
}