-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "@charlescol/schema-manager",
"version": "1.0.10",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/charlescol/schema-manager"
},
"author": "charlescol <charlescol@hotmail.fr>",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && yarn tsc",
"clean": "rm -rf dist",
"start": "yarn build && yarn ts-node -r tsconfig-paths/register ./lib/main.ts",
"run:protobuf": "yarn run start --preset=protobuf",
"run:avro": "yarn run start --preset=avro"
},
"dependencies": {
"avsc": "^5.7.7",
"axios": "^1.7.7",
"protobufjs": "^7.4.0",
"qs": "^6.13.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/minimist": "^1.2.5",
"@types/node": "^22.5.5",
"@types/qs": "^6.9.16",
"minimist": "^1.2.8",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.2"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}