-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.46 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
{
"name": "protoc-gen-nexus",
"version": "0.8.2",
"description": "Generate DSL for GraphQL Nexus from Protocol Buffers IDL",
"keywords": [
"graphql",
"grpc",
"nexus",
"protobuf",
"typescript"
],
"bin": {
"protoc-gen-nexus": "./bin/protoc-gen-nexus.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/protoc-plugin-helpers": "workspace:*",
"change-case": "catalog:",
"ts-poet": "catalog:"
},
"scripts": {
"build": "tsup",
"test": "vitest run --passWithNoTests"
},
"devDependencies": {
"@proto-graphql/testapis-proto": "workspace:*",
"@proto-graphql/tsconfig": "workspace:*"
}
}