-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 1.4 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
54
55
56
57
58
{
"name": "@vitejs/plugin-vue2-jsx",
"version": "1.1.1",
"license": "MIT",
"author": "Evan You",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild && pnpm run patch-cjs",
"patch-cjs": "tsx ./scripts/patchCJS.ts",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=14.18.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vitejs/vite-plugin-vue2-jsx.git"
},
"bugs": {
"url": "https://github.com/vitejs/vite-plugin-vue2-jsx/issues"
},
"homepage": "https://github.com/vitejs/vite-plugin-vue2-jsx#readme",
"dependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-typescript": "^7.20.2",
"@rollup/pluginutils": "^5.0.2",
"@vue/babel-preset-jsx": "^1.4.0"
},
"devDependencies": {
"@types/babel__core": "^7.1.20",
"picocolors": "^1.0.0",
"tsx": "^3.12.1",
"unbuild": "^0.7.6",
"vite": "^4.0.0",
"vue": "^2.7.14"
},
"peerDependencies": {
"vite": "^2.9.13 || ^3.0.0 || ^4.0.0 || ^5.0.0",
"vue": "^2.7.0"
},
"publishConfig": {
"access": "public"
}
}