-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
61 lines (61 loc) · 1.5 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
{
"name": "vite-plugin-virtual-html",
"version": "1.2.1",
"description": "Vite plugin to load html anywhere",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsup && npm publish && git clean -f",
"test:build": "vite build",
"test:dev": "vite",
"test": "vitest"
},
"files": [
"dist"
],
"keywords": [
"vite-plugin",
"virtual-html"
],
"author": "windson",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Windson1806/vite-plugin-virtual-html.git"
},
"bugs": {
"url": "https://github.com/Windson1806/vite-plugin-virtual-html/issues"
},
"homepage": "https://github.com/Windson1806/vite-plugin-virtual-html/",
"devDependencies": {
"@types/connect-history-api-fallback": "^1.5.4",
"@types/debug": "^4.1.12",
"@types/ejs": "^3.1.5",
"@types/node": "^22.7.5",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/compiler-sfc": "^3.5.11",
"playwright-chromium": "^1.48.0",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"vite-plugin-inspect": "^0.8.7",
"vitest": "^2.1.2",
"vue": "^3.5.11",
"vue-router": "^4.4.5"
},
"dependencies": {
"connect-history-api-fallback": "^2.0.0",
"debug": "^4.3.7",
"ejs": "^3.1.10",
"fast-glob": "^3.3.2",
"magic-string": "^0.30.11",
"vite": "^5.4.8"
}
}