-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.54 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
{
"name": "hyper-javascript-snippets",
"description": "A collection of snippets that cover JavaScript, TypeScript, and NodeJS for Visual Studio Code",
"version": "3.5.0",
"type": "module",
"scripts": {
"update": "yarn upgrade-interactive",
"build": "tsx src/index.ts",
"package": "vsce package"
},
"displayName": "Hyper JavaScript Snippets",
"publisher": "t7yang",
"icon": "images/hyper-js.png",
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"engines": {
"vscode": "^0.10.0",
"node": ">18.0.0"
},
"categories": [
"Snippets"
],
"keywords": [
"snippet",
"snippets",
"javascript",
"typescript",
"point-free"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./dist/javascript.json"
},
{
"language": "javascriptreact",
"path": "./dist/javascript.json"
},
{
"language": "typescript",
"path": "./dist/typescript.json"
},
{
"language": "typescriptreact",
"path": "./dist/typescript.json"
}
]
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/t7yang/vscode-hyper-javascript-snippets"
},
"bugs": {
"url": "https://github.com/t7yang/vscode-hyper-javascript-snippets/issues"
},
"homepage": "https://github.com/t7yang/vscode-hyper-javascript-snippets",
"devDependencies": {
"@types/node": "^20.9.0",
"col-config": "^1.1.0",
"tsx": "^4.1.2",
"typescript": "^5.2.2"
}
}