-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.4 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
{
"private": false,
"name": "@zeepkist/graphql",
"version": "0.0.0",
"license": "MIT",
"description": "GraphQL client for Zeepkists' GraphQL APIs",
"author": "James Harris <[email protected]>",
"homepage": "https://github.com/zeepkist/graphql#readme",
"repository": "https://github.com/zeepkist/graphql",
"bugs": {
"url": "https://github.com/zeepkist/graphql/issues"
},
"funding": "https://github.com/sponsors/wopian",
"type": "module",
"main": "dist/index.js",
"packageManager": "[email protected]",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./gtr": {
"import": "./dist/gtr/index.js",
"require": "./dist/gtr/index.js"
}
},
"scripts": {
"build": "tsc",
"lint": "biome check --write",
"lint:ci": "biome check",
"test": "ava",
"coverage": "c8 --all --src=dist --skip-full ava",
"document": "typedoc && prettier --write docs/",
"generate:gtr": "genql --endpoint https://graphql.zeepki.st --language typescript --output src/gtr --clientName gtr",
"generate:gtr-beta": "genql --endpoint https://graphql-beta.zeepki.st --language typescript --output src/gtr-beta --clientName gtrBeta",
"publish:gtr": "rover subgraph publish zeepkist@current --schema src/gtr/schema.graphql --name GTR --routing-url https://graphql.zeepki.st",
"publish:gtr-beta": "rover subgraph publish zeepkist@beta --schema src/gtr-beta/schema.graphql --name GTR_BETA --routing-url https://graphql-beta.zeepki.st",
"publish-schemas": "pnpm publish:gtr && pnpm publish:gtr-beta",
"move": "tsx scripts/moveRuntime.ts",
"generate": "pnpm generate:gtr && pnpm generate:gtr-beta && pnpm move",
"start": "pnpm generate && pnpm document && pnpm lint"
},
"devDependencies": {
"@apollo/rover": "^0.27.2",
"@ava/typescript": "^5.0.0",
"@biomejs/biome": "1.9.4",
"@genql/cli": "^6.3.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/node": "^22.13.9",
"ava": "^6.2.0",
"c8": "^10.1.3",
"semantic-release": "^24.2.3",
"tsx": "^4.19.3",
"typedoc": "^0.27.9",
"typescript": "^5.8.2"
},
"ava": {
"utilizeParallelBuilds": true,
"typescript": {
"compile": "tsc",
"rewritePaths": {
"src/": "dist/"
}
}
},
"renovate": {
"extends": ["local>wopian/renovate-config"]
}
}