-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 KB
/
package.json
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
{
"name": "@labdigital/apollo-trusted-documents",
"version": "0.0.4",
"license": "MIT",
"author": "Lab Digital",
"type": "module",
"module": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"check": "pnpm lint && tsc",
"format": "biome check --fix",
"lint": "biome check",
"publish:ci": "pnpm build && pnpm changeset publish",
"publish:version": "pnpm changeset version && pnpm format",
"test": "vitest run",
"test:ci": "vitest run --coverage"
},
"dependencies": {
"keyv": "^5.2.3",
"msw": "^2.7.0"
},
"devDependencies": {
"@apollo/server": "^4.11.0",
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.1",
"@types/node": "^20.17.14",
"@vitest/coverage-v8": "3.0.2",
"tsup": "8.3.5",
"typescript": "5.7.3",
"vitest": "3.0.2"
},
"peerDependencies": {
"@apollo/server": ">4.0.0",
"graphql": ">15.0.0"
},
"packageManager": "pnpm@9.15.3",
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
}
}