-
-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.56 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@vitejs/plugin-vue-jsx",
"version": "5.1.6",
"type": "module",
"license": "MIT",
"author": "Evan You",
"description": "Provides Vue 3 JSX & TSX support with HMR.",
"keywords": [
"vite",
"vite-plugin",
"vue"
],
"files": [
"dist"
],
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"prepublishOnly": "npm run build"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vitejs/vite-plugin-vue.git",
"directory": "packages/plugin-vue-jsx"
},
"bugs": {
"url": "https://github.com/vitejs/vite-plugin-vue/issues"
},
"homepage": "https://github.com/vitejs/vite-plugin-vue/tree/main/packages/plugin-vue-jsx#readme",
"dependencies": {
"@babel/core": "^7.29.7",
"@babel/plugin-syntax-typescript": "^7.29.7",
"@babel/plugin-transform-typescript": "^7.29.7",
"@rolldown/pluginutils": "^1.0.1",
"@vue/babel-plugin-jsx": "^2.0.1"
},
"devDependencies": {
"tsdown": "^0.22.14",
"unrun": "^0.3.1",
"vite": "catalog:"
},
"peerDependencies": {
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
"vue": "^3.0.0"
},
"tsdown": {
"dts": {
"tsgo": true
}
},
"compatiblePackages": {
"schemaVersion": 1,
"rolldown": {
"type": "incompatible",
"reason": "Uses Vite-specific APIs"
},
"rollup": {
"type": "incompatible",
"reason": "Uses Vite-specific APIs"
}
}
}