-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 2.38 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "unplugin-vue-jsx",
"version": "0.4.0",
"packageManager": "[email protected]",
"description": "Vue JSX plugin for both Vue 2 and 3.",
"type": "commonjs",
"keywords": [
"unplugin",
"rollup",
"vite",
"esbuild",
"webpack"
],
"license": "MIT",
"homepage": "https://github.com/unplugin/unplugin-vue-jsx#readme",
"bugs": {
"url": "https://github.com/unplugin/unplugin-vue-jsx/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-vue-jsx.git"
},
"author": "三咲智子 <[email protected]>",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./vite": {
"require": "./dist/vite.js",
"import": "./dist/vite.mjs"
},
"./webpack": {
"require": "./dist/webpack.js",
"import": "./dist/webpack.mjs"
},
"./rollup": {
"require": "./dist/rollup.js",
"import": "./dist/rollup.mjs"
},
"./esbuild": {
"require": "./dist/esbuild.js",
"import": "./dist/esbuild.mjs"
},
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsup",
"test": "vitest",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"vue": "^2.0.0 || ^3.0.0"
},
"dependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-syntax-typescript": "^7.24.7",
"@rollup/pluginutils": "^5.1.0",
"@vue/babel-plugin-jsx": "^1.2.2",
"@vue/babel-preset-jsx": "^1.4.0",
"local-pkg": "^0.5.0",
"magic-string": "^0.30.10",
"unplugin": "^1.10.1"
},
"devDependencies": {
"@sxzz/eslint-config": "^4.1.1",
"@sxzz/prettier-config": "^2.0.2",
"@types/babel__core": "^7.20.5",
"@types/node": "^20.14.2",
"bumpp": "^9.4.1",
"eslint": "^9.4.0",
"fast-glob": "^3.3.2",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"tsx": "^4.15.4",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vitest": "^2.0.3",
"vue": "^3.4.28"
},
"engines": {
"node": ">=16.14.0"
},
"prettier": "@sxzz/prettier-config"
}