-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2 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
{
"name": "typebox-schema-faker",
"version": "1.0.0",
"description": "Generate fake data from TypeBox schemas for testing, prototyping and development.",
"repository": "https://github.com/iam-medvedev/typebox-schema-faker.git",
"homepage": "https://github.com/iam-medvedev/typebox-schema-faker#readme",
"bugs": "https://github.com/iam-medvedev/typebox-schema-faker/issues",
"author": "Ilya Medvedev <ilya@medvedev.im>",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*",
"package.json"
],
"keywords": [
"typebox",
"fake",
"data",
"schema",
"generator",
"faker",
"json",
"sinclair"
],
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"scripts": {
"build": "rm -rf ./dist && NODE_ENV=production tsc --project tsconfig.dist.json",
"commit": "git-cz",
"prepare": "husky",
"release": "semantic-release",
"types": "tsc --noEmit"
},
"dependencies": {
"@faker-js/faker": "^10.0.0",
"randexp": "^0.5.3"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"@sinclair/typebox": "^0.34.41",
"@types/bun": "^1.2.22",
"cz-conventional-changelog": "^3.3.0",
"git-cz": "^4.9.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"semantic-release": "^24.2.7",
"typescript": "^5.9.2"
},
"peerDependencies": {
"@sinclair/typebox": ">=0.34.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,json,md}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}