-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.43 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
{
"name": "rsbuild-plugin-vue-legacy",
"version": "0.0.2",
"description": "Support for Vue versions below 2.7 by setting an alias for vue (switch vue version in the project to 2.7)",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./composition.js": "./composition.js",
"./composition": "./composition.js",
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"scripts": {
"release": "release-it",
"build": "unbuild"
},
"keywords": [
"rsbuild",
"rsbuild-plugin",
"plugin",
"vue"
],
"author": "skymoonya",
"license": "MIT",
"dependencies": {
"module-alias": "^2.2.3",
"vue-v2.7": "npm:vue@^2.7.16"
},
"devDependencies": {
"@rsbuild/core": "^0.5.7",
"@types/node": "^20.12.4",
"release-it": "^17.1.1",
"typescript": "^5.4.4",
"unbuild": "^2.0.0"
},
"peerDependencies": {
"@rsbuild/core": "*"
},
"files": [
"dist",
"composition.js"
],
"repository": {
"type": "git",
"url": "https://github.com/skymoonya/rsbuild-plugin-vue-legacy.git"
},
"bugs": {
"url": "https://github.com/skymoonya/rsbuild-plugin-vue-legacy/issues"
},
"homepage": "https://github.com/skymoonya/rsbuild-plugin-vue-legacy#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}