-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.51 KB
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
{
"name": "@soda-gql/cli",
"version": "0.11.26",
"description": "Command-line interface for soda-gql",
"type": "module",
"private": false,
"license": "MIT",
"files": [
"dist",
"index.d.ts",
"index.js"
],
"author": {
"name": "Shota Hatada",
"email": "shota.hatada@whatasoda.me",
"url": "https://github.com/whatasoda"
},
"keywords": [
"graphql",
"codegen",
"zero-runtime",
"typescript",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/whatasoda/soda-gql.git",
"directory": "packages/cli"
},
"homepage": "https://github.com/whatasoda/soda-gql#readme",
"bugs": {
"url": "https://github.com/whatasoda/soda-gql/issues"
},
"engines": {
"node": ">=18"
},
"bin": {
"soda-gql": "./dist/index.cjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"@soda-gql": "./@x-index.ts",
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs",
"default": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"dependencies": {
"@soda-gql/common": "workspace:*",
"@soda-gql/codegen": "workspace:*",
"@soda-gql/builder": "workspace:*",
"@soda-gql/config": "workspace:*",
"@soda-gql/typegen": "workspace:*",
"fast-glob": "^3.3.3",
"neverthrow": "^8.1.1",
"zod": "^4.1.11"
},
"optionalDependencies": {
"@soda-gql/formatter": "workspace:*",
"@soda-gql/lsp": "workspace:*"
}
}