-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "vite-plugin-dynamic-base",
"version": "1.1.0",
"description": "Resolve all resource files dynamic publicPath, like Webpack's __webpack_public_path__",
"main": "dist/index.js",
"type": "dist/index.d.ts",
"scripts": {
"dev": "tsc -p ./tsconfig.build.json -w --incremental --skipLibCheck",
"build": "rm -rf dist && tsc -p ./tsconfig.build.json --skipLibCheck",
"test": "vitest run",
"coverage": "vitest run --coverage",
"tdd": "vitest -w",
"snap": "vitest run --update",
"release": "bumpp --commit --push --tag && pnpm publish"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/chenxch/vite-plugin-dynamic-base.git"
},
"author": "chenxch",
"license": "MIT",
"bugs": {
"url": "https://github.com/chenxch/vite-plugin-dynamic-base/issues"
},
"homepage": "https://github.com/chenxch/vite-plugin-dynamic-base",
"devDependencies": {
"@types/node": "^16.11.27",
"bumpp": "^8.2.1",
"c8": "^7.11.2",
"typescript": "^4.6.3",
"vite": "^2.9.5",
"vitest": "^0.9.4"
},
"dependencies": {
"@swc/core": "^1.3.61",
"node-html-parser": "^5.3.3"
},
"peerDependencies": {
"vite": ">= 2.9.5"
},
"keywords": [
"vite",
"vite plugin",
"publicpath",
"dynamic publicpath",
"dynamic base",
"__webpack_public_path__"
]
}