-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.72 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.72 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
{
"name": "async-bulkhead-llm",
"version": "3.0.0",
"description": "Fail-fast admission control for LLM workloads built on async-bulkhead-ts.",
"license": "Apache-2.0",
"author": "",
"homepage": "https://github.com/janbalangue/async-bulkhead-llm",
"repository": {
"type": "git",
"url": "https://github.com/janbalangue/async-bulkhead-llm.git"
},
"bugs": {
"url": "https://github.com/janbalangue/async-bulkhead-llm/issues"
},
"keywords": [
"llm",
"concurrency",
"bulkhead",
"backpressure",
"admission-control",
"rate-limiting",
"load-shedding",
"token-budget"
],
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json && node rename-cjs.mjs",
"build:types": "tsc -p tsconfig.types.json",
"build": "npm run build:esm && npm run build:cjs && npm run build:types",
"prepack": "npm run build",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"test": "vitest",
"prepublishOnly": "npm run build && npm test"
},
"dependencies": {
"async-bulkhead-ts": "^0.4.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}