-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 3.01 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
{
"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"
},
"./zworpshop": {
"import": "./dist/zworpshop/index.js",
"require": "./dist/zworpshop/index.js"
}
},
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .js,.cjs,.mjs,.ts,.cts,.mts --fix",
"lint:ci": "eslint . --ext .js,.cjs,.mjs,.ts,.cts,.mts",
"test": "ava",
"coverage": "c8 --all --src=dist --skip-full ava",
"document": "typedoc && prettier --write docs/",
"generate:gtr": "genql --endpoint https://graphql.zeepkist-gtr.com --language typescript --output src/gtr --clientName gtr",
"publish:gtr": "rover subgraph publish zeepkist@current --schema src/gtr/schema.graphql --name GTR --routing-url https://graphql.zeepkist-gtr.com",
"publish-schemas": "pnpm publish:gtr",
"move": "tsx scripts/moveRuntime.ts",
"generate": "pnpm generate:gtr && pnpm move"
},
"devDependencies": {
"@apollo/rover": "^0.26.0",
"@ava/typescript": "^5.0.0",
"@genql/cli": "^6.3.0",
"@rushstack/eslint-patch": "^1.10.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"ava": "^6.1.0",
"c8": "^10.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-regexp": "^2.5.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unicorn": "^49.0.0",
"prettier": "^3.2.0",
"semantic-release": "^24.0.0",
"tsx": "^4.9.0",
"typedoc": "^0.25.0",
"typescript": "^5.4.0"
},
"ava": {
"utilizeParallelBuilds": true,
"typescript": {
"compile": "tsc",
"rewritePaths": {
"src/": "dist/"
}
}
},
"renovate": {
"extends": [
"local>wopian/renovate-config"
]
}
}