-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
73 lines (73 loc) · 1.49 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
67
68
69
70
71
72
73
{
"name": "@whyframe/jsx",
"description": "JSX support for whyframe",
"version": "0.1.10",
"author": "Bjorn Lu",
"license": "MIT",
"type": "module",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./src/index.js"
},
"./loader": {
"types": "./loader.d.ts",
"require": "./src/loader.cjs"
},
"./docusaurus": {
"types": "./docusaurus.d.ts",
"require": "./src/docusaurus.cjs"
}
},
"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/jsx"
},
"bugs": {
"url": "https://github.com/bluwy/whyframe/issues"
},
"keywords": [
"whyframe",
"jsx",
"react",
"preact",
"solid"
],
"scripts": {
"test": "uvu tests -i fixtures"
},
"peerDependencies": {
"@whyframe/core": "workspace:^0.1.0",
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0",
"webpack": "^5.0.0"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
},
"webpack": {
"optional": true
}
},
"dependencies": {
"@babel/parser": "^7.21.4",
"@babel/types": "^7.21.4",
"estree-walker": "^3.0.3",
"magic-string": "^0.30.8"
},
"devDependencies": {
"@docusaurus/types": "^2.4.0",
"@whyframe/core": "workspace:*",
"uvu": "^0.5.6",
"vite": "^5.2.7",
"webpack": "^5.77.0"
}
}