-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.26 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
{
"name": "vite-plugin-vue-style-bundler",
"version": "1.0.9",
"description": "`Automatically extract the `css` in `Vue` components and bundle them into the `js` source code, and then automatically insert the style into the head at runtime.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/zhangfisher/vite-plugin-vue-style-bundler"
},
"scripts": {
"build": "tsup",
"changeset": "changeset",
"release": "pnpm build && changeset version && changeset publish"
},
"files": [
"dist",
"src",
"LICENSE",
"readme.md",
"readme_CN.md"
],
"keywords": [
"vite",
"vite-plugin",
"vue",
"vite-plugin-vue",
"css-in-js"
],
"author": "wxzhang",
"license": "MIT",
"dependencies": {
"magic-string": "^0.30.8",
"remove": "^0.1.5"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/less": "^3.0.6",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"vite-plugin-inspect": "^0.8.3"
},
"peerDependencies": {
"@types/less": "^3.0.6",
"less": "^4.2.0",
"sass": "^1.72.0",
"vue": "^3.4.21",
"vite": "^5.1.0",
"@vitejs/plugin-vue": "^5.0.4"
}
}