-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
{
"name": "fastify-schema-to-typescript",
"version": "8.0.0",
"description": "Convert json schema for Fastify to typescript interface",
"main": "./dist/index.js",
"bin": {
"fastify-schema-to-typescript": "./dist/src/cli.js"
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"prepare": "husky",
"clean": "rimraf ./dist",
"build": "npm run clean && tsc",
"lint": "eslint '**/*.ts' '**/*mjs'",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomasthiebaud/fastify-schema-to-typescript.git"
},
"author": "Thomas Thiebaud",
"license": "MIT",
"bugs": {
"url": "https://github.com/thomasthiebaud/fastify-schema-to-typescript/issues"
},
"homepage": "https://github.com/thomasthiebaud/fastify-schema-to-typescript#readme",
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.4",
"fastify": "^3.29.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"semantic-release": "^24.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.17.0"
},
"dependencies": {
"commander": "^11.1.0",
"glob": "^10.3.10",
"js-yaml": "^4.1.0",
"json-schema-to-typescript": "^13.1.1"
},
"peerDependencies": {
"fastify": "^3.21.6 || ^4.0.0"
}
}