-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.94 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.94 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": "@overstacked/typograph",
"type": "module",
"files": [
"dist"
],
"main": "./dist/main.cjs",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js",
"require": "./dist/main.cjs"
},
"./integrations/urql": {
"types": "./dist/integrations/urql.d.ts",
"import": "./dist/integrations/urql.js",
"require": "./dist/integrations/urql.cjs"
},
"./integrations/apollo": {
"types": "./dist/integrations/apollo.d.ts",
"import": "./dist/integrations/apollo.js",
"require": "./dist/integrations/apollo.cjs"
},
"./integrations/react-query": {
"types": "./dist/integrations/react-query.d.ts",
"import": "./dist/integrations/react-query.js",
"require": "./dist/integrations/react-query.cjs"
}
},
"version": "1.0.0",
"description": "Write GraphQL in plain TypeScript — fully typed end-to-end, with no codegen, no build step, and zero lock-in.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/warrenday/typograph"
},
"homepage": "https://typographdocs.netlify.app/",
"keywords": [
"graphql",
"typescript",
"typesafe",
"schema",
"codegen-free"
],
"scripts": {
"test": "vitest --typecheck --run",
"dev": "npm --prefix ./examples/demo run dev",
"build": "vite build",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"graphql": "^16.0.0"
},
"devDependencies": {
"@apollo/client": "^3.11.0",
"@tanstack/react-query": "^5.0.0",
"@types/node": "^22.13.10",
"@types/react": "^19",
"@types/react-dom": "^19",
"dedent": "^1.5.3",
"graphql": "^16.9.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"ts-morph": "^24.0.0",
"typescript": "^5.6.3",
"urql": "^4.2.1",
"vite": "^6.0.7",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.0.2"
}
}