-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.18 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.18 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
{
"name": "@m1212e/rumble",
"module": "./out/index.mjs",
"version": "0.16.28",
"type": "module",
"repository": "https://github.com/m1212e/rumble",
"engines": {
"node": ">=20.0.0"
},
"license": "MIT",
"scripts": {
"format": "bun run lint",
"lint": "bunx biome check --write .",
"dev:docker": "docker compose -f ./dev.docker-compose.yml up",
"dev:example": "bun ./example/src/main.ts",
"dev:example:seed": "bun example/src/db/seed.ts",
"build": "tsdown",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^2.4.5",
"@graphql-tools/executor-http": "^3.1.0",
"@types/bun": "latest",
"@types/pg": "^8.18.0",
"@types/pluralize": "^0.0.33",
"drizzle-kit": "^1.0.0-beta.9-e89174b",
"drizzle-orm": "^1.0.0-beta.9-e89174b",
"drizzle-seed": "^1.0.0-beta.9-e89174b",
"lefthook": "^2.1.2",
"pg": "^8.20.0",
"tsdown": "^0.21.0"
},
"peerDependencies": {
"typescript": "^5.9.3",
"drizzle-orm": "^1"
},
"dependencies": {
"@escape.tech/graphql-armor": "^3.2.0",
"@graphql-yoga/plugin-disable-introspection": "^2.19.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/semantic-conventions": "^1.40.0",
"@pothos/core": "^4.12.0",
"@pothos/plugin-drizzle": "^0.17.0",
"@pothos/plugin-smart-subscriptions": "^4.1.4",
"@pothos/plugin-tracing": "^1.1.2",
"@pothos/tracing-opentelemetry": "^1.1.3",
"@urql/core": "^6.0.1",
"@urql/exchange-graphcache": "^9.0.0",
"@urql/introspection": "^1.2.1",
"devalue": "^5.6.3",
"es-toolkit": "^1.45.1",
"graphql": "^16.13.1",
"graphql-scalars": "^1.25.0",
"graphql-yoga": "^5.18.0",
"pluralize": "^8.0.0",
"sofa-api": "^0.18.9",
"svelte": "^5.53.7",
"wonka": "^6.3.5"
},
"main": "./out/index.cjs",
"types": "./out/index.d.cts",
"exports": {
".": {
"import": "./out/index.mjs",
"require": "./out/index.cjs"
},
"./client": {
"import": "./out/client.mjs",
"require": "./out/client.cjs"
},
"./client/generate": {
"import": "./out/client/generate.mjs",
"require": "./out/client/generate.cjs"
},
"./package.json": "./package.json"
}
}