@patravishek/memex 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "@patravishek/memex",
3
+ "version": "0.2.0",
4
+ "description": "Persistent memory for any AI terminal agent — Claude, GPT, Aider and more",
5
+ "main": "dist/cli.js",
6
+ "bin": {
7
+ "memex": "./dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist/",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "scripts": {
15
+ "build": "tsc",
16
+ "prepublishOnly": "npm run build",
17
+ "dev": "ts-node src/cli.ts",
18
+ "start": "node dist/cli.js"
19
+ },
20
+ "keywords": [
21
+ "ai",
22
+ "claude",
23
+ "memory",
24
+ "context",
25
+ "agent",
26
+ "llm",
27
+ "cli",
28
+ "persistent",
29
+ "session",
30
+ "terminal"
31
+ ],
32
+ "author": "Avishek Patra <patravishek@gmail.com>",
33
+ "license": "MIT",
34
+ "homepage": "https://github.com/patravishek/memex#readme",
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "git+https://github.com/patravishek/memex.git"
38
+ },
39
+ "bugs": {
40
+ "url": "https://github.com/patravishek/memex/issues"
41
+ },
42
+ "engines": {
43
+ "node": ">=18.0.0"
44
+ },
45
+ "dependencies": {
46
+ "@anthropic-ai/sdk": "^0.36.3",
47
+ "better-sqlite3": "^12.6.2",
48
+ "chalk": "^4.1.2",
49
+ "commander": "^12.1.0",
50
+ "dotenv": "^16.4.7",
51
+ "openai": "^4.77.0",
52
+ "ora": "^5.4.1",
53
+ "strip-ansi": "^6.0.1"
54
+ },
55
+ "devDependencies": {
56
+ "@types/better-sqlite3": "^7.6.13",
57
+ "@types/node": "^22.13.4",
58
+ "ts-node": "^10.9.2",
59
+ "typescript": "^5.7.3"
60
+ }
61
+ }