-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 896 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 896 Bytes
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
{
"name": "@deven96/ahnlich-client-node",
"version": "0.2.1",
"description": "Node.js gRPC client for Ahnlich AI and DB servers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format-check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\""
},
"dependencies": {
"@connectrpc/connect": "^1.7.0",
"@connectrpc/connect-node": "^1.7.0"
},
"devDependencies": {
"@bufbuild/protobuf": "^1.10.0",
"@bufbuild/protoc-gen-es": "^1.10.0",
"@connectrpc/protoc-gen-connect-es": "^1.6.1",
"@types/jest": "^29.0.0",
"@types/node": "^22.0.0",
"jest": "^29.0.0",
"jest-junit": "^16.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
}
}