-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
66 lines (66 loc) · 1.3 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
{
"name": "@whyframe/core",
"description": "Core library for whyframe",
"version": "0.1.11",
"author": "Bjorn Lu",
"license": "MIT",
"type": "module",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./src/index.js"
},
"./webpack": {
"types": "./webpack.d.ts",
"import": "./src/webpack/index.js"
},
"./pluginutils": {
"types": "./pluginutils.d.ts",
"import": "./src/pluginutils.js"
},
"./utils": {
"types": "./utils.d.ts",
"import": "./src/utils.js"
},
"./global": {
"types": "./global.d.ts"
}
},
"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/core"
},
"bugs": {
"url": "https://github.com/bluwy/whyframe/issues"
},
"keywords": [
"iframe",
"isolation",
"vite",
"webpack"
],
"peerDependencies": {
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0",
"webpack": "^5.0.0"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
},
"webpack": {
"optional": true
}
},
"devDependencies": {
"vite": "^5.2.7",
"webpack": "^5.77.0"
}
}