forked from wundergraph/cosmo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.12 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.12 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"private": true,
"version": "0.0.1",
"name": "wundergraph-cosmo",
"license": "Apache-2.0",
"author": {
"name": "WunderGraph Maintainers",
"email": "info@wundergraph.com"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "https",
"url": "https://github.com/wundergraph/cosmo"
},
"bin": {
"wgc": "./dist/index.js"
},
"homepage": "https://wundergraph.com",
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm run -r --parallel test",
"generate": "pnpm buf generate --path proto/wg/cosmo/platform --path proto/wg/cosmo/notifications --path proto/wg/cosmo/common --path proto/wg/cosmo/node --template buf.ts.gen.yaml && pnpm -r run --filter './connect' build",
"husky": "husky install",
"lint:fix": "pnpm run -r --parallel lint:fix",
"format": "pnpm run -r --parallel format",
"clean": "rm -rf node_modules **/node_modules dist **/dist gen **/gen .next **/.next tsconfig.tsbuildinfo **/tsconfig.tsbuildinfo .eslintcache **/.eslintcache",
"release-preview": "lerna publish --ignore-scripts --dry-run",
"release": "lerna publish -y",
"wgc": "DO_NOT_TRACK=1 pnpm -r run --filter './cli' wgc"
},
"files": [
"dist"
],
"engines": {
"node": ">=22.11.0",
"pnpm": "9"
},
"lint-staged": {
"**/*.go": [
"sh -c 'for file in \"$@\"; do case \"$file\" in */gen/*|*/vendor/*) ;; *) gofmt -w \"$file\" ;; esac; done' --"
],
"*.{js,jsx,ts,tsx,md,mdx,yml,yaml,css,json,graphql,gql}": [
"prettier --write"
]
},
"dependencies": {
"@graphiql/plugin-explorer": "^3.1.0",
"@graphiql/toolkit": "^0.9.1",
"graphiql": "^3.3.2"
},
"devDependencies": {
"@bufbuild/buf": "^1.34.0",
"@bufbuild/protoc-gen-es": "^1.10.0",
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@connectrpc/connect-query": "^1.4.1",
"@connectrpc/protoc-gen-connect-es": "^1.4.0",
"@connectrpc/protoc-gen-connect-query": "^1.4.1",
"@lerna-lite/cli": "4.11.4",
"@lerna-lite/publish": "4.11.4",
"@lerna-lite/version": "4.11.4",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"vitest": "^3.2.4"
},
"pnpm": {
"overrides": {
"react": "18.3.1",
"graphql": "16.9.0",
"cross-spawn": "7.0.6",
"next": "15.4.10",
"zod": "^3.25.0",
"debug": "<4.4.2",
"supports-color": "<10.2.1",
"wrap-ansi": "<9.0.1",
"color-convert": "<3.1.1",
"color-name": "<2.0.1",
"is-arrayish": "<0.3.3",
"slice-ansi": "<7.1.1",
"color": "<5.0.1",
"color-string": "<2.1.1",
"simple-swizzle": "<0.2.3",
"supports-hyperlinks": "<4.1.1",
"has-ansi": "<6.0.1",
"chalk-template": "<1.1.1",
"backslash": "<0.2.1",
"qs": "6.14.1",
"mdast-util-to-hast": ">=13.2.1",
"js-yaml": ">=4.1.1",
"fast-xml-parser": ">=5.3.6",
"@aws-sdk/client-sesv2": "^3.996.0"
},
"patchedDependencies": {
"graphql@16.9.0": "patches/graphql@16.9.0.patch"
}
},
"packageManager": "pnpm@9.12.3"
}