-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "ts-schemaregistry",
"version": "0.0.8",
"description": "Fully typed API client for the Confluent Schema Registry.",
"main": "./lib/index.js",
"keywords": ["confluent","schema-registry", "schema", "registry", "typescript", "api", "client", "zod","ts-rest"],
"author": "unaussprechlich",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/unaussprechlich/ts-schemaregistry"
},
"scripts": {
"publish": "npm publish --access public",
"publish-dry": "npm publish --access public --dry-run",
"build": "tsc --build",
"clean": "tsc --build --clean"
},
"dependencies": {
"@ts-rest/core": "^3.26.4",
"axios": "^1.4.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.0",
"@types/node": "^20.4.5",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint-config-prettier" : "^8.9.0",
"eslint": "^8.45.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
}
}