-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
46 lines (46 loc) · 984 Bytes
/
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
{
"name": "@whyframe/astro",
"description": "Astro support for whyframe",
"version": "0.2.6",
"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/astro"
},
"bugs": {
"url": "https://github.com/bluwy/whyframe/issues"
},
"keywords": [
"whyframe",
"astro"
],
"peerDependencies": {
"@whyframe/core": "workspace:^0.1.0",
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"dependencies": {
"@astrojs/compiler": "^1.3.0",
"estree-walker": "^3.0.3",
"magic-string": "^0.30.8"
},
"devDependencies": {
"@whyframe/core": "workspace:*",
"vite": "^5.2.7"
}
}