-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.91 KB
/
package.json
File metadata and controls
73 lines (73 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
70
71
72
73
{
"name": "@replit/graphql-codegen-persisted-queries",
"version": "0.1.2",
"description": "GraphQL Codegen plugin to generate persisted query manifests for server and client",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"clean": "rm -rf dist",
"prepare": "npm run build",
"test": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/replit/graphql-codegen-persisted-queries.git"
},
"keywords": [
"GraphQL",
"Codegen",
"PQL",
"Persisted",
"Queries"
],
"author": "darsh.patel@repl.it",
"license": "MIT",
"bugs": {
"url": "https://github.com/replit/graphql-codegen-persisted-queries/issues"
},
"homepage": "https://github.com/replit/graphql-codegen-persisted-queries#readme",
"packageManager": "pnpm@8.15.5",
"peerDependencies": {
"@graphql-codegen/plugin-helpers": "^5.0.0",
"graphql": "^16.0.0"
},
"devDependencies": {
"@graphql-codegen/plugin-helpers": "^5.0.0",
"@stylistic/eslint-plugin-js": "^4.4.1",
"@stylistic/eslint-plugin-ts": "^4.4.1",
"@types/node": "^22.19.19",
"@typescript-eslint/eslint-plugin": "^8.60.0",
"@typescript-eslint/parser": "^8.60.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"graphql": "^16.14.0",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.60.0",
"vitest": "^3.0.9"
}
}