-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.91 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.91 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
{
"name": "graphql-buddy",
"version": "0.0.0",
"type": "module",
"license": "MIT",
"author": "Hunter John Larco",
"description": "CLI tools for manipulating graphql // designed for build system tooling",
"bin": {
"graphql-buddy": "./dist/cli.js"
},
"keywords": [
"graphql",
"parse",
"build",
"build-tool",
"bundler"
],
"main": "./dist/api.js",
"types": "./dist/api.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/hunterlarco/graphql-buddy.git"
},
"bugs": {
"url": "https://github.com/hunterlarco/graphql-buddy/issues"
},
"funding": "https://github.com/sponsors/hunterlarco",
"scripts": {
"build": "pnpm run typecheck && pnpm run bundle",
"typecheck": "tsc --noEmit",
"bundle": "tsup",
"start": "pnpm run build && node dist/cli.js",
"test": "vitest run",
"test:dev": "vitest dev",
"format": "pnpm run format:eslint && pnpm run format:prettier",
"format:prettier": "prettier . --write",
"format:eslint": "eslint . --fix",
"lint": "concurrently npm:lint:*",
"lint:prettier": "prettier . --check",
"lint:eslint": "eslint . --max-warnings=0"
},
"dependencies": {
"@commander-js/extra-typings": "14.0.0",
"@graphql-tools/graphql-file-loader": "8.1.2",
"@graphql-tools/load": "8.1.2",
"@graphql-tools/utils": "10.9.1",
"commander": "14.0.1",
"glob": "11.0.3",
"graphql": "16.11.0",
"stringify-object": "6.0.0",
"tslib": "2.8.1"
},
"devDependencies": {
"@eslint/compat": "1.4.0",
"@eslint/js": "9.36.0",
"@types/node": "24.5.2",
"@types/stringify-object": "4.0.5",
"concurrently": "9.2.1",
"eslint": "9.36.0",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"jiti": "2.6.0",
"prettier": "3.6.2",
"tsup": "8.5.0",
"typescript": "5.9.2",
"typescript-eslint": "8.44.1",
"vitest": "3.2.4"
}
}