-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "@sweet-security/srjs",
"version": "1.0.4",
"main": "dist/index.js",
"description": "SRJS extends the KafkaJS Confluent Schema Registry to utilize more of the Schema Registry API",
"keywords": [
"confluent schema registry",
"kafka"
],
"repository": {
"type": "git",
"url": "https://github.com/sweet-security/srjs.git"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"build:watch": "rm -rf ./dist && tsc --watch",
"lint": "eslint './src/**/*.ts'"
},
"dependencies": {
"ajv": "^8.17.1",
"avsc": ">= 5.4.13 < 6",
"axios": "^1.7.9",
"mappersmith": ">= 2.30.1 < 3",
"protobufjs": ">= 6.11.4 < 8"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@typescript-eslint/typescript-estree": "^8.19.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"uuid": "^11.0.4"
}
}