-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "vscode-vitest-runner",
"displayName": "Vitest Runner",
"version": "0.0.4",
"main": "dist/index.js",
"icon": "logo.png",
"license": "MIT",
"description": "Vitest case runner.",
"publisher": "kingwl",
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Testing",
"Other"
],
"keywords": [
"vitest",
"runner",
"codelens"
],
"repository": "git@github.com:kwai-explore/vscode-vitest-runner.git",
"author": "kingwl <kingwenlu@gmail.com>",
"activationEvents": [
"onLanguage:typescript",
"onLanguage:javascript",
"onLanguage:typescriptreact",
"onLanguage:javascriptreact"
],
"devDependencies": {
"@types/vscode": "^1.65.0",
"esbuild": "^0.14.27",
"prettier": "^2.6.0",
"typescript": "^4.6.2",
"vitest": "^0.7.7",
"vsce": "^2.7.0"
},
"scripts": {
"build": "node ./scripts/build.js",
"package": "yarn build && yarn vsce package",
"format:check": "prettier --config ./prettier.config.json --c ./src/**/*.ts",
"format:write": "yarn format:check --write"
}
}