forked from wundergraph/cosmo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.1 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
66
67
68
69
70
71
72
{
"private": true,
"version": "0.0.1",
"name": "wundergraph-cosmo",
"license": "Apache-2.0",
"author": {
"name": "WunderGraph Maintainers",
"email": "[email protected]"
},
"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",
"clean": "del-cli '**/node_modules/' '**/**/dist/' '**/**/gen/' '**/**/.next' '**/**/tsconfig.tsbuildinfo' '**/**/.eslintcache'",
"release-preview": "lerna publish --ignore-scripts --dry-run",
"release": "lerna publish -y",
"wgc": "pnpm -r run --filter './cli' wgc"
},
"files": [
"dist"
],
"engines": {
"node": ">=20.0.0",
"pnpm": "8"
},
"lint-staged": {
"*.{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.2.1",
"@commitlint/config-conventional": "19.1.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": "3.3.1",
"@lerna-lite/publish": "3.7.1",
"@lerna-lite/version": "3.7.1",
"del-cli": "^5.1.0",
"husky": "^8.0.3",
"lint-staged": "^12.5.0",
"prettier": "^3.0.3",
"vitest": "^2.0.3"
},
"pnpm": {
"overrides": {
"react": "18.3.1",
"graphql": "16.9.0"
}
},
"packageManager": "[email protected]"
}