-
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) · 958 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 958 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": "@d4l/grpc-modules",
"version": "1.27.0",
"description": "Contains protbuf clients for our services",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://www.d4l.io/",
"repository": {
"type": "git",
"url": "git+https://github.com/d4l-data4life/grpc-modules.git"
},
"bugs": {
"url": "https://github.com/d4l-data4life/grpc-modules/issues"
},
"exports": {
"./research-pillars": {
"import": "./research-pillars/types.js",
"types": "./research-pillars/types.d.ts"
},
"./research-pillars/*": {
"import": "./research-pillars/*/*.js",
"types": "./research-pillars/*/*.d.ts"
}
},
"scripts": {
"start": "npm run build",
"build": "npx tsc",
"postbuild": "cp package.json README.md LICENSE.md ./dist"
},
"dependencies": {
"@improbable-eng/grpc-web": "^0.15.0",
"ts-proto": "^2.7.7",
"typescript": "^5.8.3",
"@bufbuild/protobuf": "2.7.0"
}
}