-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.54 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@getezy/grpc-client",
"version": "1.0.11",
"description": "Universal, extendable, typesafe gRPC/gRPC-Web client for node used in ezy.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist/**"
],
"author": "Alexey Vasyukov (@notmedia)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/getezy/grpc-client/issues"
},
"homepage": "https://github.com/getezy/grpc-client#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/getezy/grpc-client.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "husky install",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"build": "tsup lib/index.ts --tsconfig tsconfig.build.json --format cjs,esm --dts --sourcemap --clean",
"release": "release-it",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
"lint:fix": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test:protogen": "protoc --plugin=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_opt=env=node,outputClientImpl=false,outputServices=grpc-js,esModuleInterop=true,forceLong=long,snakeToCamel=false --ts_proto_out=./lib/__tests__/__fixtures__/proto/generated ./lib/__tests__/__fixtures__/proto/v3.proto",
"test": "jest --config jest.config.js",
"test:cov": "CI=true jest --config jest.config.js --colors"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@release-it/conventional-changelog": "8.0.1",
"@types/jest": "29.5.12",
"@types/lodash.get": "4.4.9",
"@types/node": "20.12.12",
"@types/uuid": "9.0.8",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-simple-import-sort": "12.1.0",
"husky": "9.0.11",
"jest": "29.7.0",
"nock": "13.5.4",
"prettier": "3.2.5",
"release-it": "17.2.1",
"ts-jest": "29.1.2",
"ts-proto": "1.176.0",
"tsup": "^8.0.2",
"typescript": "5.4.5",
"uuid": "9.0.1"
},
"dependencies": {
"@grpc/grpc-js": "1.10.8",
"@grpc/proto-loader": "0.7.13",
"@improbable-eng/grpc-web": "0.15.0",
"lodash.get": "4.4.2",
"tiny-typed-emitter": "2.1.0",
"type-fest": "4.18.2"
}
}