github-schema 1.2.4 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "type": "module",
4
- "version": "1.2.4",
5
- "packageManager": "bun@1.0.13",
3
+ "version": "1.3.1",
6
4
  "description": "GitHub's GraphQL schema",
5
+ "type": "module",
7
6
  "author": {
8
7
  "name": "Lucas Nørgård",
9
8
  "email": "lucasnrgaard@gmail.com",
10
9
  "url": "https://luxass.dev"
11
10
  },
11
+ "packageManager": "pnpm@8.10.1",
12
12
  "license": "MIT",
13
13
  "homepage": "https://github.com/luxass/github-schema",
14
14
  "repository": {
@@ -76,11 +76,14 @@
76
76
  "github-schema.d.ts",
77
77
  "github-schema.graphql"
78
78
  ],
79
+ "engines": {
80
+ "node": ">=18"
81
+ },
79
82
  "scripts": {
80
83
  "build": "tsup",
81
- "schema:download": "bun run scripts/download.ts",
84
+ "schema:download": "pnpx tsx --env-file=.env ./scripts/download.ts",
82
85
  "schema:codegen": "graphql-codegen",
83
- "prepublishOnly": "bun run schema:download && bun run schema:codegen && bun run build",
86
+ "prepublishOnly": "pnpm run schema:download && pnpm run schema:codegen && pnpm run build",
84
87
  "lint": "eslint .",
85
88
  "typecheck": "tsc --noEmit"
86
89
  },
@@ -92,10 +95,10 @@
92
95
  "@graphql-codegen/add": "^5.0.0",
93
96
  "@graphql-codegen/cli": "^5.0.0",
94
97
  "@graphql-codegen/typescript": "^4.0.1",
95
- "@luxass/eslint-config": "^4.0.0-beta.4",
96
- "bun-types": "^1.0.13",
98
+ "@luxass/eslint-config": "^4.0.0-beta.13",
99
+ "@types/node": "^18.19.0",
97
100
  "eslint": "^8.54.0",
98
- "tsup": "^8.0.0",
99
- "typescript": "^5.2.2"
101
+ "tsup": "^8.0.1",
102
+ "typescript": "^5.3.2"
100
103
  }
101
104
  }