-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
227 lines (227 loc) · 7.74 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
{
"name": "ts-essential-plugins",
"displayName": "TypeScript Essential Plugins",
"description": "50+ features: TS extension for professionals",
"version": "0.0.0-dev",
"license": "MIT",
"web": true,
"contributes": {
"commands": [
{
"command": "enableStrictEmmetInJsx",
"title": "Enable Strict Emmet in JSX",
"category": "TS Essentials JSX"
},
{
"command": "removeFunctionArgumentsTypesInSelection",
"title": "Remove Function Arguments Types in Selection"
},
{
"command": "inspectAcceptedCompletion",
"title": "Inspect Accepted Completion",
"category": "TS Essentials (Developer)"
},
{
"command": "goToEndOfValue",
"title": "Go to End of Special Value",
"category": "TS Essentials (Experimental)"
},
{
"command": "goToStartOfValue",
"title": "Go to Start of Special Value",
"category": "TS Essentials (Experimental)"
},
{
"command": "selectSpecialValue",
"title": "Select Special Value",
"category": "TS Essentials (Experimental)"
},
{
"command": "pickAndInsertFunctionArguments",
"title": "Pick and Insert Function Arguments"
},
{
"command": "goToNodeBySyntaxKind",
"title": "Go to Node by Syntax Kind"
},
{
"command": "goToNodeBySyntaxKindWithinSelection",
"title": "Go to Node by Syntax Kind Within Selection"
},
{
"command": "insertNameOfCompletion",
"title": "Insert Name of Completion"
},
{
"command": "copyFullType",
"title": "Copy Full Type"
},
{
"command": "disableAllOptionalFeatures",
"title": "Disable All Optional Features"
},
{
"command": "replaceGlobalTypescriptWithLocalVersion",
"title": "Replace Global Typescript with Local Version"
},
{
"command": "getArgumentReferencesFromCurrentParameter",
"title": "Get Argument References from Current Parameter"
},
{
"command": "printPerformanceMemoryInfo",
"title": "Print Performance & Memory Info"
},
{
"command": "migrateRequireToImports",
"title": "Migrate Require to Imports"
},
{
"command": "wrapIntoNewTag",
"title": "Wrap Into New Tag"
},
{
"command": "searchWorkspaceBySyntaxKind",
"title": "Search Workspace by Syntax Kind"
}
],
"keybindings": [
{
"key": "ctrl+shift+enter",
"mac": "cmd+shift+enter",
"command": "tsEssentialPlugins.acceptRenameWithParams",
"args": {
"strings": true,
"comments": true,
"preview": true
},
"when": "renameInputVisible && editorLangId =~ /javascript|javascriptreact|typescript|typescriptreact|vue/"
}
],
"typescriptServerPlugins": [
{
"name": "typescript-essential-plugins",
"enableForWorkspaceTypeScriptVersions": true
}
]
},
"categories": [
"Other",
"Programming Languages"
],
"publisher": "zardoy",
"private": true,
"homepage": "https://ts-plugin.zardoy.com/",
"keywords": [
"ts",
"javascript",
"pro",
"webstorm",
"typescript hero"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:vue"
],
"scripts": {
"start": "run-p watch-extension watch-plugin",
"watch-extension": "vscode-framework start --skip-launching",
"watch-plugin": "node buildTsPlugin.mjs --watch",
"build": "tsc && tsc -p typescript --noEmit && vscode-framework build && pnpm build-plugin",
"build-plugin": "node buildTsPlugin.mjs && node buildTsPlugin.mjs --browser",
"build-plugin:npm": "tsc -p typescript/tsconfig.npm.json",
"lint": "eslint {src/**,typescript/src/**}",
"test": "pnpm test-plugin --run && pnpm integration-test",
"test-plugin": "vitest --globals --dir typescript/test/ --environment ts-plugin",
"integration-test": "node integration/prerun.mjs && tsc -p tsconfig.test.json && node testsOut/runTests.js",
"integration-test:watch": "chokidar \"integration/**\" -c \"pnpm integration-test\" --initial",
"postinstall": "patch-package && tsm ./typescript/scripts/patchModules.ts"
},
"devDependencies": {
"@milahu/patch-package-with-pnpm-support": "^6.4.8",
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.11.21",
"@types/semver": "^7.3.13",
"@types/vscode": "1.72.0",
"@vitest/ui": "^0.34.6",
"@zardoy/tsconfig": "^1.3.1",
"esbuild": "^0.16.16",
"fs-extra": "^10.1.0",
"got": "^12.5.3",
"got-cjs": "npm:got@^11.x",
"prettier": "3.1.0",
"tsm": "^2.3.0",
"type-fest": "^2.13.1",
"typed-jsonfile": "^0.2.1",
"typescript": "5.3.3",
"vite": "^4.1.1",
"vitest": "^0.34.6",
"vitest-environment-ts-plugin": "./vitest-environment-ts-plugin",
"vscode-manifest": "^0.0.4",
"chokidar": "^3.5.3",
"chokidar-cli": "^3.0.0",
"npm-run-all": "^4.1.5"
},
"pnpm": {
"overrides": {
"esbuild": "^0.15.15"
}
},
"dependencies": {
"@types/chai": "^4.3.3",
"@types/glob": "^8.0.0",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/pluralize": "^0.0.29",
"@vscode/emmet-helper": "^2.8.4",
"@vscode/test-electron": "^2.1.5",
"@vue/language-core": "latest",
"@vue/language-server": "latest",
"@vue/language-service": "latest",
"@zardoy/utils": "^0.0.9",
"@zardoy/vscode-utils": "^0.0.52",
"chai": "^4.3.6",
"change-case": "^4.1.2",
"delay": "^5.0.0",
"escape-string-regexp": "^5.0.0",
"eslint": "^8.56.0",
"eslint-config-zardoy": "^0.2.17",
"glob": "^8.0.3",
"lodash": "^4.17.21",
"lodash.get": "^4.4.2",
"lodash.throttle": "^4.1.1",
"mocha": "^10.0.0",
"path-browserify": "^1.0.1",
"pluralize": "github:plurals/pluralize#36f03cd2d573fa6d23e12e1529fa4627e2af74b4",
"rambda": "^7.2.1",
"require-from-string": "^2.0.2",
"semver": "^7.3.8",
"string-dedent": "^3.0.1",
"ts-expose-internals": "^5.3.3",
"ts-simple-type": "^1.0.7",
"unleashed-typescript": "^1.3.0",
"vscode-framework": "^0.0.18",
"vscode-uri": "^3.0.6"
},
"prettier": {
"semi": false,
"singleQuote": true,
"proseWrap": "never",
"tabWidth": 4,
"trailingComma": "all",
"arrowParens": "avoid",
"printWidth": 160,
"endOfLine": "auto"
},
"release": {
"changelog": {
"style": "gitmoji"
},
"preset": {
"runTest": false
}
}
}