-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.14 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "zod-schema-faker",
"version": "2.1.1",
"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 <soc221b.e@gmail.com>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/zod-schema-faker.d.ts",
"import": "./dist/zod-schema-faker.es.js",
"require": "./dist/zod-schema-faker.cjs"
},
"./v3": {
"types": "./dist/v3/zod-schema-faker.d.ts",
"import": "./dist/v3/zod-schema-faker.es.js",
"require": "./dist/v3/zod-schema-faker.cjs"
},
"./v4": {
"types": "./dist/v4/zod-schema-faker.d.ts",
"import": "./dist/v4/zod-schema-faker.es.js",
"require": "./dist/v4/zod-schema-faker.cjs"
}
},
"main": "./dist/zod-schema-faker.cjs",
"module": "./dist/zod-schema-faker.es.js",
"types": "./dist/zod-schema-faker.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"format": "prettier --write .",
"pack": "rm -f *.tgz && npm pack && mv zod-schema-faker* zod-schema-faker.tgz",
"test": "vitest run"
},
"devDependencies": {
"@faker-js/faker": "10.5.0",
"@types/node": "24.13.3",
"@vitest/coverage-v8": "4.1.10",
"prettier": "3.9.5",
"prettier-plugin-organize-imports": "4.3.0",
"prettier-plugin-packagejson": "3.0.2",
"prettier-plugin-sort-json": "4.2.0",
"randexp": "0.5.3",
"rimraf": "6.1.3",
"ts-expect": "1.3.0",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"vite": "8.1.4",
"vite-plugin-dts": "4.5.4",
"vitest": "4.1.10",
"zod": "4.1.12"
},
"peerDependencies": {
"@faker-js/faker": "^10.0.0",
"randexp": "^0.5.3",
"zod": "^3.25.0 || ^4.0.0"
},
"engines": {
"node": ">=20"
}
}