-
Notifications
You must be signed in to change notification settings - Fork 513
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.08 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.08 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
{
"name": "dataloader",
"version": "2.2.3",
"description": "A data loading utility to reduce requests to a backend via batching and caching.",
"contributors": [
"Lee Byron <lee@leebyron.com> (http://leebyron.com/)",
"Daniel Schafer <dschafer@fb.com>",
"Nicholas Schrock <schrockn@fb.com>"
],
"license": "MIT",
"homepage": "https://github.com/graphql/dataloader",
"bugs": {
"url": "https://github.com/graphql/dataloader/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/graphql/dataloader.git"
},
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
"scripts": {
"test": "npm run lint && npm run check && npm run testonly",
"test:ci": "npm run lint && npm run check && npm run testonly -- --coverage",
"lint": "eslint ./src --ext .js,.ts",
"check": "tsc --noEmit --pretty",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "npm run build:esm && npm run build:cjs",
"watch": "node --watch-path=src --experimental-strip-types src/index.ts",
"testonly": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest ",
"prerelease": ". ./resources/prepublish.sh",
"release": "changeset publish"
},
"files": [
"dist/*",
"README.md",
"LICENSE",
"PATENTS"
],
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@eslint/js": "^9.38.0",
"@jest/globals": "^30.2.0",
"@types/node": "^24.9.1",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"jest": "^30.2.0",
"jiti": "^2.6.1",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
},
"publishConfig": {
"access": "public"
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true,
"trailingComma": "all",
"overrides": [
{
"files": "src/**/*.ts"
}
]
}
}