-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 2.85 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
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "vscode-park-ui",
"displayName": "park/ui",
"description": "Integrate components and snippets from Park UI directly into your IDE ✨",
"publisher": "Selemondev",
"repository": {
"type": "git",
"url": "https://github.com/selemondev/vscode-park-ui"
},
"bugs": {
"url": "https://github.com/selemondev/vscode-park-ui/issues",
"email": "selemonsrdev@gmail.com"
},
"version": "0.0.4",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other",
"Snippets"
],
"keywords": [
"react",
"park-ui-react",
"park-ui-react-snippet",
"park-ui-react-component-snippets",
"snippet",
"snippets",
"react snippets",
"park-ui snippets",
"react typescript snippets"
],
"activationEvents": [],
"icon": "src/images/icon.png",
"main": "./dist/extension.js",
"contributes": {
"snippets": [
{
"language": "javascriptreact",
"path": "./src/snippets/help.code-snippets"
},
{
"language": "typescriptreact",
"path": "./src/snippets/help.code-snippets"
},
{
"language": "javascriptreact",
"path": "./src/snippets/imports.code-snippets"
},
{
"language": "typescriptreact",
"path": "./src/snippets/imports.code-snippets"
},
{
"language": "javascriptreact",
"path": "./src/snippets/usage.code-snippets"
},
{
"language": "typescriptreact",
"path": "./src/snippets/usage.code-snippets"
}
],
"commands": [
{
"command": "park-ui.initCli",
"title": "park/ui: Install CLI"
},
{
"command": "park-ui.addNewComponent",
"title": "park/ui: Add New Component"
},
{
"command": "park-ui.addMultipleComponents",
"title": "park/ui: Add Multiple Components"
},
{
"command": "park-ui.gotoComponentDoc",
"title": "park/ui: Open Component Documentation"
},
{
"command": "park-ui.reloadComponentList",
"title": "park/ui: Reload Component List"
},
{
"command": "park-ui.gotoDoc",
"title": "park/ui: Open Documentation"
},
{
"command": "park-ui.installAllComponents",
"title": "park/ui: Install All Components"
}
]
},
"scripts": {
"vscode:prepublish": "pnpm build",
"generate:release": "npx changelogen@latest --release",
"build": "tsup",
"dev": "pnpm build -- --watch",
"deploy": "vsce publish --no-dependencies",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/node": "18.x",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
},
"dependencies": {
"ofetch": "^1.3.3"
}
}