-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
{
"name": "@globalworldwide/grpc-resolvers",
"version": "0.4.2",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"files": [
"dist/**"
],
"description": "Custom resolvers for @grpc/grpc-js",
"author": "Matthew Douglass <[email protected]>",
"bugs": {
"url": "https://github.com/globalworldwide/grpc-resolvers/issues"
},
"homepage": "https://github.com/globalworldwide/grpc-resolvers#readme",
"keywords": [
"grpc-js",
"grpc",
"k8s",
"kubernetes",
"resolver"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/globalworldwide/grpc-resolvers.git"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "node ./scripts/build.mjs",
"format:check": "npm run format:core -- --check",
"format:core": "prettier --cache 'src/**/*.ts' 'scripts/**/*.mjs'",
"format:fix": "npm run format:core -- --write",
"check": "npm run format:check",
"prepublishOnly": "npm run check && npm run build"
},
"dependencies": {
"@grpc/grpc-js": "^1.12.5",
"@kubernetes/client-node": "^1.0.0",
"lodash.shuffle": "^4.2.0"
},
"devDependencies": {
"@types/lodash.shuffle": "4.2.9",
"esbuild": "0.24.2",
"esbuild-plugin-d.ts": "1.3.1",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"typescript": "5.7.3"
},
"engines": {
"node": ">=22.12.0"
}
}