-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.12 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
{
"name": "vue-forward-ref",
"version": "0.0.13",
"author": "nooooooom <https://github.com/nooooooom>",
"description": "💫 Make it easier for HOCs to forward refs",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [
"vue",
"hoc",
"forward-ref"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nooooooom/vue-forward-ref.git"
},
"bugs": {
"url": "https://github.com/nooooooom/vue-forward-ref/issues"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"play": "cd ./playground && vite --force",
"prepublish": "pnpm build",
"release": "bumpp package.json --commit --push --tag && pnpm publish --access public"
},
"dependencies": {
"@vue/shared": "^3.2.47"
},
"devDependencies": {
"bumpp": "^8.2.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vitest": "^0.28.3",
"vue": "^3.2.0"
},
"peerDependencies": {
"typescript": ">=4.4.4",
"vue": "^2.7.0 || ^3.2.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}