-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.21 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "solid-snippets",
"displayName": "SolidJS Snippets",
"icon": "assets/logo.png",
"galleryBanner": {
"color": "#414042",
"theme": "dark"
},
"version": "0.1.3",
"publisher": "solidjs-community",
"contributors": [
"Damian Tarawski <[email protected]>",
"Christos Nicolaou <[email protected]>",
"Ionut Gabriel Marisescu<[email protected]>"
],
"description": "VSCode extension with helpful code snippets for SolidJS.",
"repository": {
"type": "git",
"url": "https://github.com/solidjs-community/solid-snippets.git"
},
"license": "MIT",
"keywords": [
"solid",
"snippets"
],
"categories": [
"Snippets"
],
"scripts": {
"build": "pnpm run update-snippets && vsce package -o solid-snippets.vsix",
"install-extension": "code --install-extension solid-snippets.vsix",
"format": "prettier -w \"snippets/*.json\" \"scripts/**/*.{js,ts,json,css,tsx,jsx}\"",
"update-snippets": "node scripts/update-snippets.js"
},
"contributes": {
"snippets": [
{
"language": "javascriptreact",
"path": "./snippets/JSX.jsx.tsx.json"
},
{
"language": "typescriptreact",
"path": "./snippets/JSX.jsx.tsx.json"
},
{
"language": "javascriptreact",
"path": "./snippets/component.jsx.json"
},
{
"language": "typescriptreact",
"path": "./snippets/component.tsx.json"
},
{
"language": "javascriptreact",
"path": "./snippets/context.jsx.json"
},
{
"language": "typescriptreact",
"path": "./snippets/context.tsx.json"
},
{
"language": "typescript",
"path": "./snippets/reactivity.json"
},
{
"language": "typescriptreact",
"path": "./snippets/reactivity.json"
},
{
"language": "javascript",
"path": "./snippets/reactivity.json"
},
{
"language": "javascriptreact",
"path": "./snippets/reactivity.json"
}
]
},
"devDependencies": {
"prettier": "^2.6.2",
"vsce": "^2.8.0"
},
"engines": {
"vscode": "^1.14.0",
"node": ">=16.0.0"
},
"packageManager": "[email protected]"
}