-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 905 Bytes
/
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
{
"name": "clarifai-web-grpc",
"version": "10.9.4",
"description": "The official Clarifai gRPC-web client",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"repository": "https://github.com/Clarifai/clarifai-web-grpc",
"author": "Clarifai Inc.",
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"lint": "standard index.ts resources.ts service.ts",
"clean": "rm -rf dist clarifai-web-grpc-*.tgz",
"build:cjs": "tsc -b tsconfig.cjs.json",
"build:esm": "tsc -b",
"build": "yarn build:esm && yarn build:cjs",
"prepack": "yarn clean && yarn build"
},
"dependencies": {
"google-protobuf": "3.21.2",
"grpc-web": "1.3.1"
},
"devDependencies": {
"@types/google-protobuf": "~3.7.0",
"@types/node": "~10.17.0",
"standard": "^16.0.4",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}