-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.22 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
{
"name": "arg-services",
"version": "4.0.1",
"description": "Protobuf and gRPC definitions for microservice-based argumentation machines",
"scripts": {
"dev": "vite",
"build": "buf generate && tsc && vite build",
"preview": "vite preview",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/recap-utr/arg-services-typescript.git"
},
"author": "Mirko Lenz <info@mirko-lenz.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/recap-utr/arg-services-typescript/issues"
},
"type": "module",
"files": [
"gen",
"dist"
],
"exports": {
".": "./dist/index.js",
"./google/*": "./gen/google/*.js",
"./*": "./gen/arg_services/*.js"
},
"homepage": "https://github.com/recap-utr/arg-services-typescript#readme",
"keywords": [
"microservices",
"grpc",
"protobuf",
"argumentation",
"graphs",
"cbr",
"nlp",
"similarity"
],
"dependencies": {
"@bufbuild/protobuf": "^2",
"@connectrpc/connect": "^2",
"uuid": "^11"
},
"devDependencies": {
"@bufbuild/protoc-gen-es": "^2",
"@types/node": "^22",
"typescript": "^5",
"vite-plugin-dts": "^4",
"vite": "^5"
}
}