-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.07 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
{
"name": "vite-plugin-vue-setup-inherit-attrs",
"version": "1.0.10",
"description": "Extend vue script setup syntactic sugar to support inherit-attrs",
"main": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"type": "module",
"scripts": {
"build-plugin": "npx unbuild"
},
"files": [
"dist"
],
"keywords": [
"vite-plugin",
"vue",
"inherit-attrs"
],
"bugs": {
"url": "https://github.com/kalimahapps/vite-plugin-vue-setup-inherit-attrs/issues"
},
"homepage": "https://github.com/kalimahapps/vite-plugin-vue-setup-inherit-attrs/tree/master/#readme",
"author": "khr2003",
"license": "MIT",
"dependencies": {
"@vue/compiler-sfc": "^3.2.45",
"magic-string": "^0.26.7"
},
"peerDependencies": {
"vite": ">=2.0.0"
},
"devDependencies": {
"@types/node": "^18.11.9",
"unbuild": "^1.0.1",
"vite": "^3.2.4"
},
"unbuild": {
"entries": [
"./index"
],
"outDir": "dist",
"rollup": {
"emitCJS": true
}
}
}