-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.71 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.71 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
{
"name": "grats",
"version": "0.0.36",
"type": "module",
"main": "dist/src/index.js",
"bin": "dist/src/cli.js",
"types": "dist/src/index.d.ts",
"license": "MIT",
"files": [
"dist",
"!dist/src/tests",
"llm-docs"
],
"scripts": {
"test": "tsx src/tests/test.ts",
"test-example-projects": "node src/tests/testExampleProjects.mjs",
"build": "rm -rf dist/ && tsc --build",
"format": "prettier . --write",
"lint": "eslint . && prettier . --check",
"profile": "tsx scripts/profile.ts"
},
"dependencies": {
"commander": "^14.0.1",
"graphql": "^16.11.0",
"semver": "^7.7.2"
},
"peerDependencies": {
"typescript": ">=5.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.36.0",
"@types/node": "^24.5.2",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"eslint": "^9.36.0",
"globals": "^16.4.0",
"jest-diff": "^30.1.2",
"node-fetch": "^3.3.2",
"path-browserify": "^1.0.1",
"prettier": "^3.6.2",
"process": "^0.11.10",
"tsx": "^4.19.0",
"typescript": "5.9.2"
},
"prettier": {
"trailingComma": "all"
},
"packageManager": "pnpm@10.15.1",
"engines": {
"node": ">=20 <=24"
},
"bugs": {
"url": "https://github.com/captbaritone/grats/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/captbaritone/grats.git"
},
"author": {
"name": "Jordan Eldredge",
"email": "jordan@jordaneldredge.com",
"url": "https://jordaneldredge.com"
},
"keywords": [
"graphql",
"typescript",
"resolvers",
"schema",
"code-first",
"implementation-first"
]
}