-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.27 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.27 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
{
"name": "@shelf/array-chunk-by-size",
"version": "4.0.1",
"description": "Chunk array of objects by their size in JSON",
"keywords": [
"array",
"chunk",
"json",
"split",
"separate",
"string"
],
"repository": "shelfio/array-chunk-by-size",
"type": "module",
"exports": "./lib/index.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"benchmark": "pnpm run build && node benchmark.js",
"build": "rm -rf lib/ && tsc",
"coverage": "vitest run --coverage",
"lint": "biome check --write .",
"lint:ci": "biome check .",
"prepack": "pnpm run build",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest",
"type-check": "tsc --noEmit",
"type-check:watch": "pnpm run type-check -- --watch"
},
"lint-staged": {
"*.{js,json,ts}": "biome check --write --no-errors-on-unmatched"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@shelf/tsconfig": "0.1.0",
"@types/node": "22",
"@vitest/coverage-v8": "4.0.18",
"husky": "9.1.7",
"lint-staged": "16.3.3",
"tinybench": "6.0.0",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
}
}