forked from jy0529/vite-plugin-dynamic-publicpath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1018 Bytes
/
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
{
"name": "vite-plugin-dynamic-publicpath",
"version": "1.1.1",
"description": "A vite plugin for dynamic publicpath, like __webpack_public_path__",
"main": "dist/index.js",
"scripts": {
"dev": "tsc -p . -w --incremental --skipLibCheck",
"build": "rm -rf dist && tsc -p . --skipLibCheck",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepublishOnly": "yarn build"
},
"files": [
"dist",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jy0529/vite-plugin-dynamic-publicpath.git"
},
"keywords": [
"vite",
"publicpath",
"dynamic publicpath"
],
"author": "Jy",
"license": "MIT",
"bugs": {
"url": "https://github.com/jy0529/vite-plugin-dynamic-publicpath/issues"
},
"homepage": "https://github.com/jy0529/vite-plugin-dynamic-publicpath#readme",
"dependencies": {
"es-module-lexer": "^0.6.0"
},
"devDependencies": {
"@types/node": "^16.0.0",
"vite": "^2.4.0"
}
}