-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
141 lines (141 loc) · 4.44 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "ggt",
"version": "1.3.3",
"description": "The command-line interface for Gadget",
"homepage": "https://github.com/gadget-inc/ggt",
"bugs": {
"url": "https://github.com/gadget-inc/ggt/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gadget-inc/ggt.git"
},
"license": "MIT",
"author": {
"name": "Gadget Authors"
},
"type": "module",
"bin": {
"ggt": "dist/main.js"
},
"files": [
"/assets",
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/package.json",
"/README.md"
],
"scripts": {
"build": "pnpm run clean && esbuild src/main.ts --outdir=dist --format=esm --platform=node --target=node20 --inject:./shims/cjs.js --bundle --splitting --minify --sourcemap",
"changeset": "changeset",
"clean": "rimraf dist tmp/spec",
"dev": "pnpm run build --minify=false --watch",
"generate:graphql": "graphql-codegen --config=graphql-codegen.yml",
"lint": "concurrently 'npm:lint:*(!fix)' --group --names --prefix-colors=auto",
"lint:cspell": "cspell . --no-progress --show-suggestions --show-context",
"lint:eslint": "eslint . --max-warnings=0 --cache --cache-location=node_modules/.cache/eslint/.eslintcache",
"lint:fix": "prettier . --write --cache && eslint . --fix --cache --cache-location=node_modules/.cache/eslint/.eslintcache",
"lint:prettier": "prettier . --check --cache",
"lint:typescript": "tsc --project tsconfig.json",
"release": "pnpm run build && changeset publish",
"test": "vitest",
"version": "changeset version && node --loader=ts-node/esm --no-warnings scripts/generate-readme.ts"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/typescript": "^4.1.1",
"@graphql-codegen/typescript-operations": "^4.3.1",
"@sentry/node": "^8.38.0",
"@types/eslint": "^8.56.7",
"@types/fast-levenshtein": "^0.0.4",
"@types/fs-extra": "^11.0.4",
"@types/ms": "^0.7.34",
"@types/node": "^18.19.64",
"@types/node-notifier": "^8.0.5",
"@types/normalize-package-data": "^2.4.4",
"@types/normalize-path": "^3.0.2",
"@types/pluralize": "^0.0.33",
"@types/semver": "^7.5.8",
"@types/which": "^3.0.4",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"ansi-escapes": "^7.0.0",
"arg": "^5.0.2",
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"chalk-template": "^1.1.0",
"clean-stack": "^5.2.0",
"cli-cursor": "^5.0.0",
"cli-spinners": "^2.9.2",
"cli-table3": "^0.6.5",
"concurrently": "^9.1.0",
"cspell": "^8.16.0",
"dayjs": "^1.11.13",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-unicorn": "^56.0.0",
"execa": "^8.0.1",
"fast-levenshtein": "^3.0.0",
"fast-querystring": "^1.1.2",
"figures": "^6.1.0",
"find-up": "^7.0.0",
"fs-extra": "^11.2.0",
"get-port": "^7.1.0",
"got": "^13.0.0",
"graphql": "^16.9.0",
"graphql-ws": "^5.16.0",
"ignore": "^6.0.2",
"indent-string": "^5.0.0",
"is-interactive": "^2.0.0",
"is-unicode-supported": "^2.1.0",
"is-wsl": "^3.1.0",
"mimic-function": "^5.0.1",
"ms": "^2.1.3",
"nock": "^13.5.6",
"node-notifier": "^10.0.1",
"normalize-package-data": "^7.0.0",
"normalize-path": "^3.0.0",
"open": "^10.1.0",
"p-map": "^7.0.2",
"p-queue": "^8.0.1",
"p-retry": "^6.2.1",
"p-timeout": "^6.1.3",
"pluralize": "^8.0.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.3",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-toc": "^9.0.0",
"rimraf": "^5.0.7",
"semver": "^7.6.3",
"serialize-error": "^11.0.3",
"simple-git": "^3.27.0",
"stdin-discarder": "^0.2.2",
"string-width": "^7.2.0",
"strip-ansi": "^7.1.0",
"terminal-link": "^3.0.0",
"ts-dedent": "^2.2.0",
"ts-node": "^10.9.2",
"type-fest": "^4.27.0",
"typescript": "^5.6.3",
"vitest": "^2.1.5",
"watcher": "^2.3.1",
"which": "^5.0.0",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"packageManager": "pnpm@8.12.0",
"engines": {
"node": ">=18.0.0"
}
}