-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.02 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.02 KB
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
{
"name": "vite-plugin-vue-hsml",
"version": "0.6.0",
"description": "Vite plugin for using hsml in Vue SFC",
"keywords": [
"hsml",
"markup",
"plugin",
"sfc",
"template",
"vite",
"vite-plugin",
"vue"
],
"bugs": "https://github.com/hsml-lab/vite-plugin-vue-hsml/issues",
"license": "MIT",
"author": {
"name": "Christopher Quadflieg",
"email": "chrissi92@hotmail.de",
"url": "https://github.com/Shinigami92"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hsml-lab/vite-plugin-vue-hsml.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/Shinigami92"
},
{
"type": "paypal",
"url": "https://www.paypal.com/donate/?hosted_button_id=L7GY729FBKTZY"
}
],
"files": [
"dist"
],
"type": "module",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"clean": "git clean -fdx --exclude .claude",
"build": "tsdown",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint --type-aware",
"ts-check": "tsc --noEmit",
"test": "vitest",
"test:update-snapshots": "vitest run -u",
"coverage": "vitest run --coverage",
"prepublishOnly": "pnpm run clean && pnpm install && pnpm run build",
"preflight": "pnpm install && run-s format lint ts-check build test:update-snapshots"
},
"dependencies": {
"hsml": "~0.6.0"
},
"devDependencies": {
"@types/node": "24.12.0",
"@vitejs/plugin-vue": "6.0.5",
"@vitest/coverage-v8": "4.1.2",
"c8": "11.0.0",
"npm-run-all2": "8.0.4",
"oxfmt": "0.42.0",
"oxlint": "1.57.0",
"oxlint-tsgolint": "0.18.1",
"publint": "0.3.18",
"rimraf": "6.1.3",
"tsdown": "0.21.5",
"tsx": "4.21.0",
"typescript": "6.0.2",
"vite": "8.0.2",
"vitest": "4.1.2",
"vue": "3.5.31"
},
"peerDependencies": {
"vite": "^6.4.1 || ^7.1.11 || ^8.0.0"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.33.0"
}