-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.7 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
{
"name": "@labdigital/dataloader-cache-wrapper",
"version": "0.7.0",
"author": "Lab Digital <opensource@labdigital.nl>",
"repository": {
"type": "git",
"url": "git+https://github.com/labd/dataloader-cache-wrapper.git"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"description": "Wrapper around dataloader to cache the results of the loader",
"keywords": [],
"main": "dist/index.cjs",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"sideEffects": false,
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsdown",
"check": "pnpm lint && pnpm tsc",
"dev": "tsdown --watch",
"publish:ci": "pnpm build && pnpm changeset publish",
"publish:version": "pnpm changeset version && pnpm format",
"test": "vitest run --coverage",
"test:ci": "vitest run --coverage",
"format": "biome format --fix",
"lint": "biome check",
"tsc": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "2.5.8",
"@changesets/cli": "3.0.0",
"@types/object-hash": "3.0.6",
"@vitest/coverage-v8": "4.1.10",
"dataloader": "^2.2.3",
"publint": "0.3.22",
"tsdown": "^0.22.14",
"typescript": "7.0.2",
"vitest": "4.1.10"
},
"peerDependencies": {
"dataloader": ">=2.0 <3.0",
"keyv": ">=5.3.4 <6.0.0"
},
"dependencies": {
"object-hash": "3.0.0"
},
"packageManager": "pnpm@11.22.0+sha512.1ff870c4c6133dfd88fb2afc46dd13d47f09c9794b438c6fdb47ca98caf3bc16381ee0be93a091b8e3824cf01f889f46d7d9e20910fb0be1ab0fb5baa80dd621"
}