-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.35 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.35 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "solid-relay",
"version": "1.0.0-beta.27",
"description": "SolidJS bindings for Relay",
"homepage": "https://solid-relay.xiniha.dev",
"license": "MIT",
"author": "XiNiHa <me@xiniha.dev>",
"repository": {
"type": "git",
"url": "git+https://github.com/XiNiHa/solid-relay.git"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./package.json": "./package.json"
},
"scripts": {
"prepare": "playwright install",
"build": "tsdown",
"lint": "oxlint",
"format": "oxfmt",
"check": "oxlint && oxfmt --check",
"fix": "oxlint --fix && oxfmt",
"codegen": "cd tests && relay-compiler",
"test": "concurrently \"vitest --watch --coverage\" \"pnpm codegen -w\"",
"ci:test": "pnpm codegen && vitest run --coverage",
"ci:version": "changeset version",
"ci:publish": "pnpm publish -r"
},
"dependencies": {
"dequal": "^2.0.3",
"tiny-invariant": "^1.3.3"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^24.11.0",
"@types/relay-runtime": "^20.1.1",
"@types/relay-test-utils": "^19.0.0",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"concurrently": "^9.2.1",
"magic-string": "^0.30.21",
"meros": "^1.3.2",
"minimatch": "^10.2.4",
"oxc-parser": "^0.116.0",
"oxc-walker": "^0.7.0",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"oxlint-tsgolint": "^0.16.0",
"pkg-pr-new": "^0.0.65",
"playwright": "^1.58.2",
"publint": "^0.3.18",
"relay-compiler": "^20.1.1",
"relay-runtime": "^20.1.1",
"relay-test-utils": "^20.1.1",
"solid-js": "^1.9.11",
"tsdown": "^0.21.0",
"typescript": "^5.9.3",
"vite-plugin-cjs-interop": "^2.4.3",
"vite-plugin-relay-lite": "^0.12.0",
"vite-plugin-solid": "^2.11.10",
"vitest": "^4.0.18"
},
"peerDependencies": {
"relay-runtime": "^18.1.0 || ^19 || ^20",
"seroval": "^1.1.0",
"solid-js": ">=1.4.0"
},
"packageManager": "pnpm@10.30.3",
"pnpm": {
"patchedDependencies": {
"@changesets/assemble-release-plan": "patches/@changesets__assemble-release-plan.patch"
}
}
}