-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.16 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
{
"name": "vite-vscode-extension-template",
"displayName": "Vite VS Code Extension Template",
"description": "A template for VS Code Extension development",
"author": "Aaron Zhou",
"publisher": "AaaaronZhou",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Formatters"
],
"keywords": [
"formatter"
],
"files": [
"dist"
],
"homepage": "https://github.com/Clarkkkk/vite-vscode-extension-template.git#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Clarkkkk/vite-vscode-extension-template.git"
},
"bugs": {
"url": "https://github.com/Clarkkkk/vite-vscode-extension-template.git/issues"
},
"badges": [],
"galleryBanner": {
"theme": "light"
},
"icon": "assets/logo.png",
"main": "./dist/extension.cjs",
"browser": "./dist/extension.cjs",
"contributes": {
"configuration": {
"title": "Vite VS Code Extension Template",
"properties": {
"vite-vscode-extension-template.indentStyle": {
"description": "Set the indent style",
"type": "string",
"enum": [
"space",
"tab"
],
"enumDescriptions": [
"Use 4 spaces for indentation",
"Use tab for indentation"
],
"default": "space"
},
"vite-vscode-extension-template.align": {
"description": "Align the values of all directives in the same block",
"type": "boolean",
"default": false
}
}
}
},
"activationEvents": [
"onLanguage:typescript"
],
"scripts": {
"vscode:prepublish": "pnpm run package",
"typecheck": "tsc --noEmit --watch --preserveWatchOutput",
"compile": "vite build",
"watch": "vite build --watch",
"package": "vite build",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"lint": "eslint --cache --fix src/**/*.{js,ts}",
"lint-staged": "lint-staged",
"test": "vitest",
"test:update": "vitest --update",
"test:run": "vitest --run --changed",
"release": "commit-and-tag-version"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/node": "20.11.5",
"@types/vscode": "^1.85.0",
"commit-and-tag-version": "^12.2.0",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"globals": "^15.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.10.0",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.7.1",
"vite-plugin-externalize-deps": "^0.8.0"
}
}