-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.32 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
{
"name": "better-call",
"version": "0.3.3",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "pnpm typecheck && vitest",
"format": "biome format --write",
"typecheck": "tsc --noEmit",
"bump": "bumpp",
"build": "tsup --dts --clean",
"dev": "tsup --watch",
"dev:dts": "tsup --watch --dts"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@biomejs/biome": "^1.8.3",
"@types/bun": "latest",
"@types/set-cookie-parser": "^2.4.10",
"bumpp": "^9.4.1",
"tsup": "^8.3.5",
"type-fest": "^4.23.0",
"typescript": "^5.6.0-beta",
"vitest": "^2.0.4"
},
"dependencies": {
"@better-fetch/fetch": "^1.1.4",
"rou3": "^0.5.1",
"zod": "^3.24.1",
"uncrypto": "^0.1.3"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./client": {
"import": {
"types": "./dist/client.d.ts",
"default": "./dist/client.js"
},
"require": {
"types": "./dist/client.d.cts",
"default": "./dist/client.cjs"
}
}
},
"files": [
"dist"
]
}