-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.13 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": "uttp-starter",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
},
"./adapters/*": {
"types": "./dist/adapters/*/index.d.ts",
"import": "./dist/adapters/*/index.js",
"default": "./dist/adapters/*/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"prepublishOnly": "pnpm build",
"example": "tsx scripts/run.ts"
},
"keywords": [
"uttp"
],
"peerDependencies": {
"express": "^4",
"fastify": "^3 || ^4",
"h3": "*",
"koa": "^2"
},
"dependencies": {
"uttp": "^0.1.1",
"zod": "^3.17.3"
},
"devDependencies": {
"@types/express": "4.17.13",
"esbuild-node-loader": "0.8.0",
"express": "4.18.1",
"fastify": "3.29.0",
"h3": "0.7.8",
"koa": "2.13.4",
"tsup": "6.0.1",
"tsx": "3.6.0",
"typescript": "4.7.2"
},
"tsup": {
"entry": [
"src/index.ts",
"src/adapters/*.ts"
],
"format": [
"esm",
"cjs"
],
"dts": {
"resolve": true
},
"splitting": true
}
}