-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.63 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.63 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
{
"name": "slimcontext",
"version": "2.1.3",
"description": "Lightweight, model-agnostic chat history compression (trim + summarize) for AI assistants.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./adapters/langchain": "./dist/adapters/langchain.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --ext .ts,.tsx --max-warnings=0",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"keywords": [
"ai",
"chat",
"memory",
"llm",
"context",
"summarize",
"compression"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/agentailor/slimcontext.git"
},
"bugs": {
"url": "https://github.com/agentailor/slimcontext/issues"
},
"homepage": "https://github.com/agentailor/slimcontext#readme",
"packageManager": "pnpm@10.14.0",
"peerDependencies": {
"@langchain/core": ">=0.3.71 <1"
},
"peerDependenciesMeta": {
"@langchain/core": {
"optional": true
}
},
"devDependencies": {
"eslint": "^8.57.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unused-imports": "^4.2.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"@langchain/core": "^0.3.71"
}
}