-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.16 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
{
"name": "babel-plugin-vue-jsx-hmr",
"description": "babel plugin for vue3 jsx HMR",
"author": "liyincode",
"version": "1.0.0",
"license": "MIT",
"homepage": "https://github.com/liyincode/babel-plugin-vue-jsx-hmr#readme",
"keywords": [
"babel",
"plugin",
"webpack",
"rspack",
"rsbuild",
"vue3",
"jsx",
"hmr"
],
"repository": {
"type": "git",
"url": "git+https://github.com/liyincode/babel-plugin-vue-jsx-hmr"
},
"bugs": {
"url": "https://github.com/liyincode/babel-plugin-vue-jsx-hmr/issues"
},
"files": [
"dist",
"LICENSE"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"watch": "tsup --watch"
},
"dependencies": {
"@babel/core": "^7.24.3",
"@vue/babel-plugin-jsx": "^1.2.2"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
}
}