-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.42 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
60
61
62
63
64
{
"name": "zod-schema-faker",
"type": "module",
"sideEffects": false,
"version": "1.0.5",
"description": "Generates mock data from zod schema. Powered by @faker-js/faker and randexp.js",
"keywords": [
"zod",
"faker-js",
"fake",
"stub",
"mock",
"test",
"json",
"schema"
],
"homepage": "https://github.com/soc221b/zod-schema-faker#readme",
"bugs": {
"url": "https://github.com/soc221b/zod-schema-faker/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soc221b/zod-schema-faker.git"
},
"license": "MIT",
"author": "Ernest <>",
"main": "./dist/zod-schema-faker.umd.cjs",
"module": "./dist/zod-schema-faker.js",
"exports": {
".": {
"import": "./dist/zod-schema-faker.js",
"require": "./dist/zod-schema-faker.umd.cjs"
}
},
"types": "dist/zod-schema-faker.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"test": "jest --watch"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "22.9.3",
"jest": "29.7.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"ts-expect": "1.3.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"vite": "5.4.11",
"vite-plugin-dts": "^4.0.0",
"zod": "3.23.8"
},
"peerDependencies": {
"zod": "*"
},
"dependencies": {
"@faker-js/faker": "8.4.1",
"randexp": "0.5.3"
}
}