-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 930 Bytes
/
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
{
"name": "zod-data-provider",
"version": "1.0.0",
"description": "A small TypeScript zod utility library for defining data provider interfaces with nice DX",
"main": "dist/index.cjs",
"exports": {
".": {
"import": "./src/index.mjs",
"require": "./srcindex.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"LICENSE",
"README.md",
"dist/"
],
"author": "Adam Suskin",
"homepage": "https://github.com/adamsuskin/zod-data-provider.git",
"license": "MIT",
"repository": {
"url": "https://github.com/adamsuskin/zod-data-provider.git"
},
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm,iife"
},
"dependencies": {
"zod": "^3.22.4"
},
"devDependencies": {
"tsup": "^8.0.2",
"typescript": "^5.2.2"
},
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true
}
}