-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.82 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
74
75
{
"name": "@remix-relay/react",
"version": "2.4.8",
"description": "Provides Relay integration with React Router (Framework)",
"keywords": [
"Remix",
"Relay",
"React",
"React Router"
],
"homepage": "https://github.com/dantrain/remix-relay#readme",
"repository": {
"type": "git",
"url": "https://github.com/dantrain/remix-relay.git"
},
"license": "MIT",
"author": {
"name": "Dan Train",
"url": "https://github.com/dantrain"
},
"type": "commonjs",
"exports": {
".": {
"module": "./dist/index.mjs",
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint . --max-warnings 0",
"typecheck": "tsc -b --noEmit"
},
"devDependencies": {
"@remix-relay/eslint-config": "workspace:*",
"@remix-relay/typescript-config": "workspace:*",
"@types/eslint": "^9.6.1",
"@types/node": "^25.1.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@types/react-relay": "^18.2.1",
"@types/relay-runtime": "^20.1.1",
"eslint": "^9.39.0",
"graphql": "17.0.0-alpha.9",
"jiti": "^2.6.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-relay": "^20.1.1",
"react-router": "^7.13.0",
"relay-runtime": "^20.1.1",
"tsup": "^8.5.1",
"typescript": "~5.9.3"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"react-relay": ">=16",
"react-router": "^7.0.0",
"relay-runtime": ">=16"
}
}