-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "unplugin-rewrite-imports",
"description": "Unplugin to rewrite imports",
"version": "0.17.0",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/brendonmatos/unplugin-rewrite-imports",
"repository": {
"type": "git",
"url": "git+https://github.com/brendonmatos/unplugin-rewrite-imports.git"
},
"scripts": {
"test": "vitest",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"publish-version": "git push --follow-tags && npm run build && npm publish",
"publish:patch": "npm version patch && npm run publish-version",
"publish:minor": "npm version minor && npm run publish-version",
"publish:major": "npm version major && npm run publish-version"
},
"type": "module",
"devDependencies": {
"vite": "^4.1.0",
"vite-plugin-dts": "^2.0.2",
"vite-plugin-inspect": "^0.7.15",
"vitest": "^0.28.4"
},
"dependencies": {
"magic-string": "^0.30.0",
"unplugin": "^1.1.0"
},
"peerDependencies": {
"magic-string": ">= 0.28.0",
"unplugin": ">= 1.0.0"
}
}