-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.44 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
{
"name": "protoc-gen-pothos",
"version": "0.6.1",
"description": "Generate DSL for Pothos GraphQL from Protocol Buffers IDL",
"keywords": ["graphql", "grpc", "pothos", "protobuf", "typescript"],
"bin": {
"protoc-gen-pothos": "./bin/protoc-gen-pothos.cjs"
},
"repository": "[email protected]:proto-graphql/proto-graphql-js.git",
"author": "izumin5210 <[email protected]>",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"files": ["bin/", "src/", "dist/", "!src/**/*.test.ts", "!src/**/__tests__/"],
"sideEffects": false,
"private": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 14.0.0"
},
"dependencies": {
"@bufbuild/protobuf": "catalog:",
"@bufbuild/protoplugin": "catalog:",
"@proto-graphql/codegen-core": "workspace:*",
"@proto-graphql/proto-descriptors": "workspace:*",
"@proto-graphql/protoc-plugin-helpers": "workspace:*",
"ts-poet": "catalog:"
},
"devDependencies": {
"@proto-graphql/testapis-proto": "workspace:*",
"@proto-graphql/tsconfig": "workspace:*"
},
"scripts": {
"build": "tsup",
"test": "vitest run --passWithNoTests"
}
}