-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
{
"name": "vscode-vue3-refactorings",
"displayName": "Vue3 refactorings ",
"description": "Helps you to refactor to script setup syntax",
"publisher": "AlmarAubel",
"version": "0.0.5",
"repository": {
"url": "https://github.com/AlmarAubel/vscode-vue3-refactorings",
"type": "git"
},
"engines": {
"vscode": "^1.57.0"
},
"categories": [
"Other",
"Linters"
],
"activationEvents": [
"onLanguage:vue"
],
"main": "./out/extension.js",
"contributes": {},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"lint": "eslint src --ext ts",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:watch": "vitest watch",
"package":"vsce package",
"debug": "ts-node ./src/refactorings/toTypedDefineProps/Foo.ts"
},
"dependencies": {
"ts-morph": "^14.0.0"
},
"devDependencies": {
"@phenomnomnominal/tsquery": "^4.2.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^8.2.2",
"@types/node": "14.x",
"@types/vscode": "^1.57.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@vitest/ui": "^0.7.11",
"esbuild": "^0.14.27",
"eslint": "^7.27.0",
"ts-node": "^10.7.0",
"typescript": "^4.3.2",
"vite": "^2.8.6",
"vitest": "^0.7.11",
"vsce": "^2.7.0",
"vscode-test": "^1.5.2"
}
}