-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.4 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": "azs",
"description": "🤓 Amplify Zod schemas with methods",
"version": "1.2.0",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alii/azs.git"
},
"author": "Alistair Smith <[email protected]> (https://alistair.sh)",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/alii"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.13.5",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^1.0.1",
"prettier": "^3.2.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"zod": "^3.22.4"
},
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs&&yarn check-export-types",
"lint": "eslint ./src/**/*.ts",
"fix": "eslint ./src/**/*.ts --fix",
"release": "yarn build&&yarn npm publish",
"check-export-types": "attw --pack ."
},
"bugs": {
"url": "https://github.com/alii/azs/issues"
},
"homepage": "https://github.com/alii/azs#readme",
"files": [
"dist",
"package.json"
],
"keywords": [
"zod",
"schema",
"typescript"
],
"packageManager": "[email protected]",
"peerDependencies": {
"zod": "*"
}
}