-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.31 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.31 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
{
"name": "@objectql/protocol-graphql",
"version": "4.2.2",
"description": "GraphQL Protocol Plugin for ObjectStack",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@apollo/server": "^5.4.0",
"@apollo/subgraph": "^2.13.3",
"@as-integrations/express4": "^1.1.2",
"@graphql-tools/schema": "^10.0.31",
"@objectql/types": "workspace:*",
"@objectstack/spec": "^3.2.9",
"cors": "^2.8.6",
"dataloader": "^2.2.3",
"express": "^4.22.1",
"graphql": "^16.13.1",
"graphql-subscriptions": "^2.0.0",
"graphql-tag": "^2.12.6",
"graphql-ws": "^5.16.2",
"ws": "^8.20.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@objectql/driver-memory": "workspace:*",
"@objectql/protocol-tck": "workspace:*",
"@objectstack/core": "^3.2.9",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.25",
"@types/ws": "^8.18.1",
"typescript": "^5.9.3",
"vitest": "^1.6.1"
},
"keywords": [
"objectql",
"objectstack",
"graphql",
"protocol",
"plugin"
],
"license": "MIT"
}