-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 3.83 KB
/
Copy pathpackage.json
File metadata and controls
142 lines (142 loc) · 3.83 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "pg-agent-memory",
"version": "0.1.0",
"description": "Stateful AI agent memory layer for PostgreSQL with pgvector - TypeScript-first with intelligent context management",
"keywords": [
"ai",
"agent",
"memory",
"postgresql",
"pgvector",
"vector",
"embeddings",
"conversation",
"context",
"langchain",
"typescript",
"stateful",
"chat",
"llm",
"rag"
],
"author": "Alex Potapenko <alex.potapenko.dev@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/alexpota/pg-agent-memory#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/alexpota/pg-agent-memory.git"
},
"bugs": {
"url": "https://github.com/alexpota/pg-agent-memory/issues"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE",
"SECURITY.md"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest --run tests/unit",
"test:all": "vitest",
"test:watch": "vitest tests/unit",
"test:coverage": "vitest --run --coverage",
"test:integration": "vitest --run tests/integration",
"test:docker": "bash scripts/test-docker.sh",
"test:docker:alt": "bash scripts/test-docker-alt.sh",
"dev:up": "bash scripts/docker-dev.sh up",
"dev:down": "bash scripts/docker-dev.sh down",
"dev:clean": "bash scripts/docker-dev.sh clean",
"dev:logs": "bash scripts/docker-dev.sh logs",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write src/**/*.ts tests/**/*.ts",
"format:check": "prettier --check src/**/*.ts tests/**/*.ts",
"clean": "rm -rf dist",
"docs": "typedoc src/index.ts",
"example": "npm run build && node examples/quick-start.js",
"example:basic": "npm run build && node examples/basic-usage.js",
"benchmark": "npm run build && node scripts/benchmark.js",
"start": "npm run example",
"prepare": "husky",
"prepublishOnly": "npm run clean && npm run build && npm test && npm run lint",
"commit": "cz",
"release": "semantic-release"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"tests/**/*.ts": [
"eslint --fix",
"prettier --write"
]
},
"peerDependencies": {
"pg": ">=8.0.0"
},
"overrides": {
"tar-fs": ">=3.1.1",
"tmp": ">=0.2.4",
"glob": "^10.5.0"
},
"dependencies": {
"@xenova/transformers": "^2.17.2",
"p-queue": "^8.0.0",
"tiktoken": "^1.0.21",
"ulid": "^3.0.1",
"zod": "^4.0.10"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"audit-ci": "^7.1.0",
"@commitlint/config-conventional": "^19.8.1",
"@semantic-release/changelog": "^6.0.3",
"@types/node": "^24.1.0",
"@types/pg": "^8.15.4",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"@vitest/coverage-v8": "^3.2.4",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-sonarjs": "^3.0.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"pg": "^8.16.3",
"pgvector": "^0.2.1",
"prettier": "^3.0.0",
"semantic-release": "^24.2.7",
"tsup": "^8.0.0",
"tsx": "^4.20.3",
"typedoc": "^0.28.13",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}