generated from LinbuduLab/vscode-extension-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
161 lines (161 loc) · 5.1 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "pnpm-vscode-helper",
"displayName": "pnpm-vscode-helper",
"description": "vscode extension for pnpm and pnpm workspace",
"version": "0.2.1",
"icon": "assets/pnpm-logo.png",
"publisher": "linbudu",
"engines": {
"vscode": "^1.65.0"
},
"repository": {
"type": "github",
"url": "https://github.com/LinbuduLab/pnpm-vscode-helper"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"title": "Install workspace root dependencies only.",
"command": "pnpm-vscode-helper.install-workspace-root-deps",
"category": "PNPM VS Code Helper"
},
{
"title": "Install selected package dependencies only.",
"command": "pnpm-vscode-helper.install-selected-packages-deps",
"category": "PNPM VS Code Helper"
},
{
"title": "Check deps update for selected packages",
"command": "check-deps-update-for-selected-packages",
"category": "PNPM VS Code Helper"
},
{
"title": "Codelen Handler",
"command": "pnpm-vscode-helper.codelensAction",
"category": "PNPM VS Code Helper"
},
{
"title": "Disable/Enable Codelen",
"command": "pnpm-vscode-helper.toggle-codelen-status",
"category": "PNPM VS Code Helper"
},
{
"title": "Create .npmrc config with initial default configuration",
"command": "pnpm-vscode-helper.create-npm-rc-config",
"category": "PNPM VS Code Helper"
},
{
"title": "Create pnpm-workspace.yaml config with init default configuration",
"command": "pnpm-vscode-helper.create-pnpm-workspace-config",
"category": "PNPM VS Code Helper"
},
{
"title": "Select workspace packages and execute operations with filters",
"command": "pnpm-vscode-helper.select-workspace-package",
"category": "PNPM VS Code Helper"
},
{
"title": "Create extra workspace package scripts (current workspace only)",
"command": "pnpm-vscode-helper.create-extra-workspace-scripts",
"category": "PNPM VS Code Helper"
},
{
"title": "Remove extra workspace package scripts (current workspace only)",
"command": "pnpm-vscode-helper.remove-extra-workspace-scripts",
"category": "PNPM VS Code Helper"
},
{
"title": "Upgrade package deps(use pnpm update command)",
"command": "pnpm-vscode-helper.built-in-upgrade",
"category": "PNPM VS Code Helper"
},
{
"title": "Remove workspace root deps",
"command": "pnpm-vscode-helper.remove-workspace-root-deps",
"category": "PNPM VS Code Helper"
},
{
"title": "Remove package deps",
"command": "pnpm-vscode-helper.remove-workspace-package-deps",
"category": "PNPM VS Code Helper"
},
{
"title": "Publish node package with interactive prompt",
"command": "pnpm-vscode-helper.publish-node-package",
"category": "PNPM VS Code Helper"
},
{
"title": "Publish workspace package with interactive prompt",
"command": "pnpm-vscode-helper.publish-workspace-package",
"category": "PNPM VS Code Helper"
}
],
"configuration": {
"properties": {
"pnpm-vscode-helper.enableCodelen": {
"type": "boolean",
"default": true
},
"pnpm-vscode-helper.workspacePackages": {
"type": "object",
"default": {},
"description": "deprecated"
},
"pnpm-vscode-helper.extraWorkspaceScripts": {
"type": "array",
"default": []
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/ini": "^1.3.31",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.180",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"@types/semver": "^7.3.9",
"@types/vscode": "^1.65.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vscode/test-electron": "^2.1.2",
"esbuild": "^0.14.28",
"eslint": "^8.9.0",
"glob": "^7.2.0",
"mocha": "^9.2.1",
"type-fest": "^2.12.0",
"typescript": "^4.5.5"
},
"dependencies": {
"consola": "^2.15.3",
"fs-extra": "^10.0.1",
"globby": "^11.0.3",
"ini": "^2.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"npm-check-updates": "^12.5.4",
"rc-parser": "^1.0.2",
"semver": "^7.3.5"
}
}