-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 959 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
43
44
{
"name": "zocker",
"description": "Generate realistic test-data from your Zod-Schemas",
"version": "1.4.1",
"author": "Loris Sigrist",
"license": "MIT",
"keywords": [
"mock-data",
"zod"
],
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/LorisSigrist/zocker.git"
},
"homepage": "https://zocker.sigrist.dev",
"scripts": {
"build": "tsc",
"test": "vitest --run --passWithNoTests",
"bench": "vitest bench --run --passWithNoTests",
"format": "prettier --write .",
"changeset": "changeset",
"release": "npm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"prettier": "^2.8.7",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
},
"files": [
"dist"
],
"peerDependencies": {
"zod": "^3.22.0"
},
"dependencies": {
"@faker-js/faker": "^7.6.0",
"randexp": "^0.5.3"
}
}