-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "process-in-chunks",
"version": "1.0.0",
"description": "Conveniently process data in chunks",
"repository": {
"type": "git",
"url": "https://github.com/0x80/process-in-chunks"
},
"keywords": [
"process",
"chunks",
"throttling",
"typescript"
],
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "eslint .",
"compile": "tsc --noEmit",
"build": "tsup-node && tsc --emitDeclarationOnly && tsc-alias --verbose",
"clean": "del-cli dist tsconfig.tsbuildinfo",
"test": "echo \"No test specified\"",
"prepare": "pnpm clean && pnpm build",
"prettier:format": "prettier --write .",
"prettier:check": "prettier --check ."
},
"author": "Thijs Koerselman",
"license": "MIT",
"devDependencies": {
"@codecompose/typescript-config": "^1.2.0",
"@types/node": "^22.10.7",
"del-cli": "^6.0.0",
"eslint": "^8.57.1",
"eslint-config-0x80": "^0.0.0",
"prettier": "^3.4.2",
"prettier-plugin-jsdoc": "^1.3.2",
"tsc-alias": "^1.8.10",
"tsup": "^8.3.5",
"typescript": "^5.7.3"
},
"packageManager": "[email protected]+sha256.61bd66913b52012107ec25a6ee4d6a161021ab99e04f6acee3aa50d0e34b4af9"
}