-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1014 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1014 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
30
31
32
33
34
35
{
"name": "@datumland/arrowflightjs",
"version": "0.7.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"!dist/**/*.test.*"
],
"repository": {
"type": "git",
"url": "https://github.com/datumland/arrowflightjs.git"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"generate": "mkdir -p ./src/generated && grpc_tools_node_protoc --plugin=protoc-gen-ts_proto=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=./src/generated --ts_proto_opt=outputServices=nice-grpc,outputServices=generic-definitions,useExactTypes=false -I ./contracts ./contracts/Flight.proto",
"build": "npm run generate && tsc",
"test": "node --test ./dist/*.test.js ./dist/**/*.test.js"
},
"dependencies": {
"apache-arrow": "^21.1.0",
"nice-grpc": "^2.1.15"
},
"devDependencies": {
"grpc-tools": "^1.13.1",
"ts-proto": "^2.11.6",
"typescript": "^6.0.2"
}
}