-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.62 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
{
"name": "process-in-chunks",
"version": "1.3.0",
"description": "Conveniently process data in chunks",
"keywords": [
"chunks",
"process",
"throttling",
"typescript"
],
"homepage": "https://process-in-chunks.codecompose.dev",
"license": "MIT",
"author": "Thijs Koerselman",
"repository": {
"type": "git",
"url": "https://github.com/0x80/process-in-chunks"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"clean": "del-cli dist tsconfig.tsbuildinfo",
"prepare": "pnpm clean && pnpm build",
"check-lint": "oxlint -c .oxlintrc.json --type-aware",
"format": "oxfmt .",
"check-format": "oxfmt --check .",
"check-types": "tsc --noEmit",
"test": "vitest run",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@codecompose/typescript-config": "^3.0.0",
"@types/node": "^25.0.3",
"del-cli": "^7.0.0",
"get-or-throw": "^2.1.0",
"oxfmt": "^0.33.0",
"oxlint": "^1.48.0",
"oxlint-tsgolint": "^0.15.0",
"tsdown": "^0.18.0",
"typescript": "6.0.0-beta",
"vitepress": "^1.6.0",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.0.5+sha256.61bd66913b52012107ec25a6ee4d6a161021ab99e04f6acee3aa50d0e34b4af9"
}