-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.17 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-import-rewriter",
"version": "2.1.1",
"type": "module",
"description": "重写 `import` 的 `vite` 插件",
"keywords": [
"vite",
"import",
"rewriter",
"resolver"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"tsup": {
"entry": [
"src/index.ts"
],
"clean": true,
"dts": true,
"format": [
"cjs",
"esm"
]
},
"scripts": {
"build": "tsup-node",
"build:publish": "npm run build&&npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuexiaoliang/vite-plugin-import-rewriter.git"
},
"author": "岳晓亮",
"license": "MIT",
"bugs": {
"url": "https://github.com/yuexiaoliang/vite-plugin-import-rewriter/issues",
"email": "2220124666@qq.com"
},
"homepage": "https://github.com/yuexiaoliang/vite-plugin-import-rewriter#readme",
"devDependencies": {
"@types/node": "^17.0.23",
"@types/qs": "^6.9.7",
"@types/resolve": "^1.20.1",
"jest": "^27.5.1",
"qs": "^6.10.3",
"resolve": "^1.22.0",
"tsup": "^5.12.1",
"typescript": "^4.5.4",
"vite": "^2.8.0"
}
}