|
1 | 1 | { |
2 | | - "name": "zod", |
3 | | - "version": "3.23.8", |
4 | | - "author": "Colin McDonnell <[email protected]>", |
5 | | - "repository": { |
6 | | - "type": "git", |
7 | | - "url": "git+https://github.com/colinhacks/zod.git" |
8 | | - }, |
9 | | - "main": "./lib/index.js", |
10 | | - "module": "./lib/index.mjs", |
11 | | - "devDependencies": { |
12 | | - "@babel/core": "^7.22.5", |
13 | | - "@babel/preset-env": "^7.22.5", |
14 | | - "@babel/preset-typescript": "^7.22.5", |
15 | | - "@jest/globals": "^29.4.3", |
16 | | - "@rollup/plugin-typescript": "^8.2.0", |
17 | | - "@standard-schema/spec": "^1.0.0-beta.4", |
18 | | - "@swc/core": "^1.3.66", |
19 | | - "@swc/jest": "^0.2.26", |
20 | | - "@types/benchmark": "^2.1.0", |
21 | | - "@types/jest": "^29.2.2", |
22 | | - "@types/node": "14", |
23 | | - "@typescript-eslint/eslint-plugin": "^5.15.0", |
24 | | - "@typescript-eslint/parser": "^5.15.0", |
25 | | - "babel-jest": "^29.5.0", |
26 | | - "benchmark": "^2.1.4", |
27 | | - "dependency-cruiser": "^9.19.0", |
28 | | - "eslint": "^8.11.0", |
29 | | - "eslint-config-prettier": "^8.5.0", |
30 | | - "eslint-plugin-ban": "^1.6.0", |
31 | | - "eslint-plugin-import": "^2.25.4", |
32 | | - "eslint-plugin-simple-import-sort": "^7.0.0", |
33 | | - "eslint-plugin-unused-imports": "^2.0.0", |
34 | | - "husky": "^7.0.4", |
35 | | - "jest": "^29.3.1", |
36 | | - "lint-staged": "^12.3.7", |
37 | | - "netlify-cli": "^17.26.2", |
38 | | - "nodemon": "^2.0.15", |
39 | | - "prettier": "^2.6.0", |
40 | | - "pretty-quick": "^3.1.3", |
41 | | - "rollup": "^2.70.1", |
42 | | - "ts-jest": "^29.1.0", |
43 | | - "ts-morph": "^14.0.0", |
44 | | - "ts-node": "^10.9.1", |
45 | | - "tslib": "^2.3.1", |
46 | | - "tsx": "^3.8.0", |
47 | | - "typescript": "~4.5.5", |
48 | | - "vitest": "^0.32.2" |
49 | | - }, |
50 | | - "exports": { |
51 | | - ".": { |
52 | | - "types": "./index.d.ts", |
53 | | - "require": "./lib/index.js", |
54 | | - "import": "./lib/index.mjs" |
55 | | - }, |
56 | | - "./package.json": "./package.json", |
57 | | - "./locales/*": "./lib/locales/*" |
58 | | - }, |
59 | | - "bugs": { |
60 | | - "url": "https://github.com/colinhacks/zod/issues" |
61 | | - }, |
62 | | - "description": "TypeScript-first schema declaration and validation library with static type inference", |
63 | | - "files": [ |
64 | | - "/lib", |
65 | | - "/index.d.ts" |
66 | | - ], |
67 | | - "funding": "https://github.com/sponsors/colinhacks", |
68 | | - "homepage": "https://zod.dev", |
69 | | - "keywords": [ |
70 | | - "typescript", |
71 | | - "schema", |
72 | | - "validation", |
73 | | - "type", |
74 | | - "inference" |
75 | | - ], |
76 | | - "license": "MIT", |
77 | | - "lint-staged": { |
78 | | - "src/*.ts": [ |
79 | | - "eslint --cache --fix", |
80 | | - "prettier --ignore-unknown --write" |
81 | | - ], |
82 | | - "*.md": [ |
83 | | - "prettier --ignore-unknown --write" |
84 | | - ] |
85 | | - }, |
86 | | - "scripts": { |
87 | | - "prettier:check": "prettier --check src/**/*.ts deno/lib/**/*.ts *.md --no-error-on-unmatched-pattern", |
88 | | - "prettier:fix": "prettier --write src/**/*.ts deno/lib/**/*.ts *.md --ignore-unknown --no-error-on-unmatched-pattern", |
89 | | - "lint:check": "eslint --cache --ext .ts ./src", |
90 | | - "lint:fix": "eslint --cache --fix --ext .ts ./src", |
91 | | - "check": "yarn lint:check && yarn prettier:check", |
92 | | - "fix": "yarn lint:fix && yarn prettier:fix", |
93 | | - "clean": "rm -rf lib/* deno/lib/*", |
94 | | - "build": "yarn run clean && npm run build:cjs && npm run build:esm && npm run build:deno", |
95 | | - "build:deno": "node ./deno-build.mjs && cp ./README.md ./deno/lib", |
96 | | - "build:esm": "rollup --config ./configs/rollup.config.js", |
97 | | - "build:cjs": "tsc -p ./configs/tsconfig.cjs.json", |
98 | | - "build:types": "tsc -p ./configs/tsconfig.types.json", |
99 | | - "build:test": "tsc -p ./configs/tsconfig.test.json", |
100 | | - "test:watch": "yarn test:ts-jest --watch", |
101 | | - "test": "yarn test:ts-jest", |
102 | | - "test:babel": "jest --coverage --config ./configs/babel-jest.config.json", |
103 | | - "test:bun": "bun test src/", |
104 | | - "test:vitest": "npx vitest --config ./configs/vitest.config.ts", |
105 | | - "test:ts-jest": "npx jest --config ./configs/ts-jest.config.json", |
106 | | - "test:swc": "npx jest --config ./configs/swc-jest.config.json", |
107 | | - "test:deno": "cd deno && deno test", |
108 | | - "prepublishOnly": "npm run test && npm run build && npm run build:deno", |
109 | | - "play": "nodemon -e ts -w . -x tsx playground.ts", |
110 | | - "depcruise": "depcruise -c .dependency-cruiser.js src", |
111 | | - "benchmark": "tsx src/benchmarks/index.ts", |
112 | | - "prepare": "husky install", |
113 | | - "docs": "netlify dev" |
114 | | - }, |
115 | | - "sideEffects": false, |
116 | | - "support": { |
117 | | - "backing": { |
118 | | - "npm-funding": true |
119 | | - } |
120 | | - }, |
121 | | - "types": "./index.d.ts" |
| 2 | + "name": "zod", |
| 3 | + "version": "3.24.0", |
| 4 | + "author": "Colin McDonnell <[email protected]>", |
| 5 | + "repository": { |
| 6 | + "type": "git", |
| 7 | + "url": "git+https://github.com/colinhacks/zod.git" |
| 8 | + }, |
| 9 | + "main": "./lib/index.js", |
| 10 | + "module": "./lib/index.mjs", |
| 11 | + "devDependencies": { |
| 12 | + "@babel/core": "^7.22.5", |
| 13 | + "@babel/preset-env": "^7.22.5", |
| 14 | + "@babel/preset-typescript": "^7.22.5", |
| 15 | + "@jest/globals": "^29.4.3", |
| 16 | + "@rollup/plugin-typescript": "^8.2.0", |
| 17 | + "@standard-schema/spec": "^1.0.0-beta.4", |
| 18 | + "@swc/core": "^1.3.66", |
| 19 | + "@swc/jest": "^0.2.26", |
| 20 | + "@types/benchmark": "^2.1.0", |
| 21 | + "@types/jest": "^29.2.2", |
| 22 | + "@types/node": "14", |
| 23 | + "@typescript-eslint/eslint-plugin": "^5.15.0", |
| 24 | + "@typescript-eslint/parser": "^5.15.0", |
| 25 | + "babel-jest": "^29.5.0", |
| 26 | + "benchmark": "^2.1.4", |
| 27 | + "dependency-cruiser": "^9.19.0", |
| 28 | + "eslint": "^8.11.0", |
| 29 | + "eslint-config-prettier": "^8.5.0", |
| 30 | + "eslint-plugin-ban": "^1.6.0", |
| 31 | + "eslint-plugin-import": "^2.25.4", |
| 32 | + "eslint-plugin-simple-import-sort": "^7.0.0", |
| 33 | + "eslint-plugin-unused-imports": "^2.0.0", |
| 34 | + "husky": "^7.0.4", |
| 35 | + "jest": "^29.3.1", |
| 36 | + "lint-staged": "^12.3.7", |
| 37 | + "netlify-cli": "^17.26.2", |
| 38 | + "nodemon": "^2.0.15", |
| 39 | + "prettier": "^2.6.0", |
| 40 | + "pretty-quick": "^3.1.3", |
| 41 | + "rollup": "^2.70.1", |
| 42 | + "ts-jest": "^29.1.0", |
| 43 | + "ts-morph": "^14.0.0", |
| 44 | + "ts-node": "^10.9.1", |
| 45 | + "tslib": "^2.3.1", |
| 46 | + "tsx": "^3.8.0", |
| 47 | + "typescript": "~4.5.5", |
| 48 | + "vitest": "^0.32.2" |
| 49 | + }, |
| 50 | + "exports": { |
| 51 | + ".": { |
| 52 | + "types": "./index.d.ts", |
| 53 | + "require": "./lib/index.js", |
| 54 | + "import": "./lib/index.mjs" |
| 55 | + }, |
| 56 | + "./package.json": "./package.json", |
| 57 | + "./locales/*": "./lib/locales/*" |
| 58 | + }, |
| 59 | + "bugs": { |
| 60 | + "url": "https://github.com/colinhacks/zod/issues" |
| 61 | + }, |
| 62 | + "description": "TypeScript-first schema declaration and validation library with static type inference", |
| 63 | + "files": [ |
| 64 | + "/lib", |
| 65 | + "/index.d.ts" |
| 66 | + ], |
| 67 | + "funding": "https://github.com/sponsors/colinhacks", |
| 68 | + "homepage": "https://zod.dev", |
| 69 | + "keywords": [ |
| 70 | + "typescript", |
| 71 | + "schema", |
| 72 | + "validation", |
| 73 | + "type", |
| 74 | + "inference" |
| 75 | + ], |
| 76 | + "license": "MIT", |
| 77 | + "lint-staged": { |
| 78 | + "src/*.ts": [ |
| 79 | + "eslint --cache --fix", |
| 80 | + "prettier --ignore-unknown --write" |
| 81 | + ], |
| 82 | + "*.md": [ |
| 83 | + "prettier --ignore-unknown --write" |
| 84 | + ] |
| 85 | + }, |
| 86 | + "scripts": { |
| 87 | + "prettier:check": "prettier --check src/**/*.ts deno/lib/**/*.ts *.md --no-error-on-unmatched-pattern", |
| 88 | + "prettier:fix": "prettier --write src/**/*.ts deno/lib/**/*.ts *.md --ignore-unknown --no-error-on-unmatched-pattern", |
| 89 | + "lint:check": "eslint --cache --ext .ts ./src", |
| 90 | + "lint:fix": "eslint --cache --fix --ext .ts ./src", |
| 91 | + "check": "yarn lint:check && yarn prettier:check", |
| 92 | + "fix": "yarn lint:fix && yarn prettier:fix", |
| 93 | + "clean": "rm -rf lib/* deno/lib/*", |
| 94 | + "build": "yarn run clean && npm run build:cjs && npm run build:esm && npm run build:deno", |
| 95 | + "build:deno": "node ./deno-build.mjs && cp ./README.md ./deno/lib", |
| 96 | + "build:esm": "rollup --config ./configs/rollup.config.js", |
| 97 | + "build:cjs": "tsc -p ./configs/tsconfig.cjs.json", |
| 98 | + "build:types": "tsc -p ./configs/tsconfig.types.json", |
| 99 | + "build:test": "tsc -p ./configs/tsconfig.test.json", |
| 100 | + "test:watch": "yarn test:ts-jest --watch", |
| 101 | + "test": "yarn test:ts-jest", |
| 102 | + "test:babel": "jest --coverage --config ./configs/babel-jest.config.json", |
| 103 | + "test:bun": "bun test src/", |
| 104 | + "test:vitest": "npx vitest --config ./configs/vitest.config.ts", |
| 105 | + "test:ts-jest": "npx jest --config ./configs/ts-jest.config.json", |
| 106 | + "test:swc": "npx jest --config ./configs/swc-jest.config.json", |
| 107 | + "test:deno": "cd deno && deno test", |
| 108 | + "prepublishOnly": "npm run test && npm run build && npm run build:deno", |
| 109 | + "play": "nodemon -e ts -w . -x tsx playground.ts", |
| 110 | + "depcruise": "depcruise -c .dependency-cruiser.js src", |
| 111 | + "benchmark": "tsx src/benchmarks/index.ts", |
| 112 | + "prepare": "husky install", |
| 113 | + "docs": "netlify dev" |
| 114 | + }, |
| 115 | + "sideEffects": false, |
| 116 | + "support": { |
| 117 | + "backing": { |
| 118 | + "npm-funding": true |
| 119 | + } |
| 120 | + }, |
| 121 | + "types": "./index.d.ts" |
122 | 122 | } |
0 commit comments