-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 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
{
"name": "promises-batched",
"version": "0.1.4",
"description": "Iterate through promises in a batched manner",
"keywords": [
"async",
"await",
"batch",
"concurrency",
"es6",
"promise",
"throttle"
],
"license": "MIT",
"repository": "whilenot-dev/promises-batched",
"author": "wh!le <github@whilenot.dev>",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": [
"./dist/**/*.js",
"./dist/**/*.d.ts"
],
"scripts": {
"build": "bun run check:types && bun run build:dist",
"build:dist": "tsc -p ./tsconfig.prod.json",
"check": "bun run check:format && bun run check:lint && bun run check:types",
"check:format": "biome format",
"check:lint": "biome lint",
"check:types": "tsc --noEmit",
"clean": "bun run clean:build",
"clean:build": "rimraf ./dist",
"format": "biome format --write",
"lint": "biome lint --write",
"prepare": "bun run clean:build && bun run build",
"test": "bun test"
},
"devDependencies": {
"@biomejs/biome": "2.2.3",
"bun-types": "^1.2.21",
"rimraf": "6.0.1",
"typescript": "^5.9.2"
}
}