-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "vite-plugin-style-vw-loader",
"version": "1.0.8",
"description": "一个可以将vue3标签内样式px转换vw的 vite loader",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm",
"test": "cd examples/test-vue3 && pnpm run dev"
},
"keywords": [
"vite-plugin-style-vw-loader",
"style-vw-loader",
"vite-plugin",
"style",
"loader",
"vw"
],
"repository": {
"type": "git",
"url": "https://github.com/gitboyzcf/vite-plugin-style-vw-loader.git"
},
"author": "boyzcf",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vite": "^4.1.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/gitboyzcf/vite-plugin-style-vw-loader/issues"
}
}