forked from wundergraph/cosmo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "@wundergraph/cosmo-shared",
"version": "0.31.19",
"description": "Shared code between WunderGraph Cosmo packages",
"main": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"url": "https://github.com/wundergraph/cosmo"
},
"scripts": {
"build": "del dist && tsc",
"test": "pnpm lint && vitest run",
"test:update": "vitest run -u",
"lint": "eslint --cache --ext .ts,.mjs,.cjs . && prettier -c src",
"lint:fix": "eslint --cache --fix --ext .ts,.mjs,.cjs . && prettier --write -c src",
"generate-subgraph-configs": "tsx test/testdata/subgraphConfigGenerator.ts"
},
"keywords": [
"wundergraph-cosmo",
"shared"
],
"author": {
"name": "WunderGraph Maintainers",
"email": "info@wundergraph.com"
},
"license": "Apache-2.0",
"dependencies": {
"@bufbuild/protobuf": "^1.9.0",
"@graphql-tools/schema": "^8.5.1",
"@graphql-tools/utils": "^9.2.1",
"@wundergraph/composition": "workspace:*",
"@wundergraph/cosmo-connect": "workspace:*",
"graphql": "^16.9.0",
"pino": "^8.14.1"
},
"devDependencies": {
"@types/node": "^20.3.1",
"del-cli": "^5.0.0",
"tsx": "^3.14.0",
"typescript": "5.5.2",
"vitest": "^2.0.3"
}
}