-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
50 lines (50 loc) · 1.02 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": "@whyframe/vue",
"description": "Vue support for whyframe",
"version": "0.1.7",
"author": "Bjorn Lu",
"license": "MIT",
"type": "module",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./src/index.js"
}
},
"files": [
"src",
"*.d.ts"
],
"funding": "https://bjornlu.com/sponsor",
"homepage": "https://whyframe.dev",
"repository": {
"type": "git",
"url": "https://github.com/bluwy/whyframe.git",
"directory": "packages/vue"
},
"bugs": {
"url": "https://github.com/bluwy/whyframe/issues"
},
"keywords": [
"whyframe",
"vue"
],
"scripts": {
"test": "uvu tests -i fixtures"
},
"peerDependencies": {
"@whyframe/core": "workspace:^0.1.0",
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"dependencies": {
"@vue/compiler-dom": "^3.4.21",
"magic-string": "^0.30.8"
},
"devDependencies": {
"@whyframe/core": "workspace:*",
"uvu": "^0.5.6",
"vite": "^5.2.7",
"vue": "^3.4.21"
}
}