-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.26 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": "tea",
"version": "0.1.0",
"description": "A lightweight, type-safe API client builder for TypeScript",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./core": {
"types": "./dist/core.d.ts",
"import": "./dist/core.js",
"require": "./dist/core.cjs"
},
"./schema": {
"types": "./dist/schema.d.ts",
"import": "./dist/schema.js",
"require": "./dist/schema.cjs"
}
},
"type": "module",
"license": "MIT",
"keywords": [
"zod",
"fetch",
"typescript"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"pub": "npm run build && npm publish",
"patch": "npm run build && npm version patch && npm publish",
"format": "biome format --write ."
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@types/bun": "latest",
"tsx": "^4.19.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"trustedDependencies": [
"@biomejs/biome"
],
"dependencies": {
"zod": "^3.23.8"
}
}