forked from wundergraph/cosmo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.17 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
73
74
75
76
77
78
79
80
81
{
"name": "wgc",
"version": "0.59.2",
"description": "The official CLI tool to manage the GraphQL Federation Platform Cosmo",
"type": "module",
"main": "dist/index.js",
"bin": "dist/index.js",
"author": {
"name": "WunderGraph Maintainers",
"email": "[email protected]"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"url": "https://github.com/wundergraph/cosmo"
},
"scripts": {
"build": "del dist && tsc",
"wgc": "tsx --env-file .env src/index.ts",
"test": "pnpm lint && vitest run",
"coverage": "vitest run --coverage",
"lint": "eslint --cache --ext .ts,.mjs,.cjs . && prettier -c src",
"lint:fix": "eslint --cache --fix --ext .ts,.mjs,.cjs . && prettier --write -c src"
},
"keywords": [
"wundergraph",
"cosmo",
"cli",
"federation",
"graphql"
],
"license": "Apache-2.0",
"dependencies": {
"@bufbuild/protobuf": "^1.9.0",
"@connectrpc/connect": "^1.4.0",
"@connectrpc/connect-node": "^1.4.0",
"@graphql-tools/utils": "^10.2.2",
"@wundergraph/composition": "workspace:*",
"@wundergraph/cosmo-connect": "workspace:*",
"@wundergraph/cosmo-shared": "workspace:*",
"boxen": "^7.1.1",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"date-fns": "^3.6.0",
"decompress": "^4.2.1",
"dotenv": "^16.3.1",
"env-paths": "^3.0.0",
"graphql": "^16.9.0",
"inquirer": "^9.2.7",
"js-yaml": "^4.1.0",
"jwt-decode": "^3.1.2",
"log-symbols": "^5.1.0",
"octokit": "^3.2.0",
"open": "^9.1.0",
"ora": "^8.0.1",
"pathe": "^1.1.1",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@types/cli-progress": "^3.11.5",
"@types/cli-table": "^0.3.1",
"@types/decompress": "^4.2.7",
"@types/inquirer": "^9.0.3",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.3.1",
"del-cli": "^5.0.0",
"eslint": "^8.52.0",
"eslint-config-unjs": "^0.2.1",
"eslint-plugin-require-extensions": "^0.1.3",
"prettier": "^3.0.3",
"tsx": "^4.17.0",
"typescript": "5.5.2",
"vitest": "^2.0.3"
},
"gitHead": "c37aed755e1b19ed91d30f9b5f7041e15c56901a"
}