-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.31 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "windmillcode-snippets-zero",
"displayName": "Windmillcode Snippets Zero",
"description": "Collection of snippets used at Windmillcode",
"version": "1.95.3001",
"publisher": "windmillcode-publisher-0",
"icon": "images/logo.png",
"repository": {
"url": "https://github.com/windmillcode0/vscode-snippets-0"
},
"engines": {
"vscode": "^1.79.0"
},
"categories": [
"Snippets",
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension",
"contributes": {
"snippets": [
{
"language": "css",
"path": "./snippets/css.json"
},
{
"language": "dart",
"path": "./snippets/dart.json"
},
{
"language": "html",
"path": "./snippets/html.json"
},
{
"language": "java",
"path": "./snippets/java.json"
},
{
"language": "javascriptreact",
"path": "./snippets/javascriptreact.json"
},
{
"language": "json",
"path": "./snippets/json.json"
},
{
"language": "jsonc",
"path": "./snippets/jsonc.json"
},
{
"language": "markdown",
"path": "./snippets/markdown.json"
},
{
"language": "powershell",
"path": "./snippets/powershell.json"
},
{
"language": "python",
"path": "./snippets/python.json"
},
{
"language": "scss",
"path": "./snippets/scss.json"
},
{
"language": "typescript",
"path": "./snippets/typescript.json"
},
{
"language": "typescriptreact",
"path": "./snippets/typescriptreact.json"
},
{
"language": "go",
"path": "./snippets/go.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w"
},
"devDependencies": {
"@types/node": "^16.18.34",
"@types/vscode": "^1.73.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"copyfiles": "^2.4.1",
"esbuild": "^0.19.2",
"eslint": "^8.26.0",
"typescript": "^5.1.3"
},
"dependencies": {
"adm-zip": "^0.5.10",
"semver": "^7.5.4",
"tar": "^6.1.15",
"tar.gz2": "^1.0.0",
"uuid": "^9.0.0"
}
}