-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.05 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
{
"name": "fornaxjs",
"version": "0.1.7",
"type": "module",
"bin": {
"fnx": "bun run ./core/scripts/cli.ts --silent=false"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.3.0",
"@hono/swagger-ui": "^0.5.0",
"@hono/zod-openapi": "^0.18.3",
"@types/bun": "latest",
"@types/parse5": "^7.0.0",
"@vaadin/router": "^2.0.0",
"bun-style-loader": "^0.4.0",
"ejs": "^3.1.10",
"fornax-server": "latest",
"hono": "^4.6.14",
"incremental-dom": "^0.7.0",
"inquirer": "^12.3.0",
"parse5": "^7.2.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
"exports": {
".": {
"import": "./index.ts",
"types": [
"./core.d.ts"
]
},
"./server": {
"import": "./server.ts",
"default": "./server.ts"
}
},
"files": [
"./index.ts",
"./server.ts",
"./core",
"./core/types/global.d.ts",
"./build/release.d.ts"
],
"types": "./core/types/global.d.ts",
"sideEffects": true
}