@persistmemory/cli 0.1.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,59 @@
1
+ {
2
+ "name": "@persistmemory/cli",
3
+ "version": "0.1.0",
4
+ "description": "The PersistMemory command line: capture, search and manage your memory from a terminal",
5
+ "license": "MIT",
6
+ "author": "PersistMemory",
7
+ "homepage": "https://persistmemory.com/docs/cli",
8
+ "bugs": {
9
+ "email": "hello@persistmemory.com"
10
+ },
11
+ "keywords": [
12
+ "persistmemory",
13
+ "memory",
14
+ "cli",
15
+ "ai",
16
+ "agent",
17
+ "llm",
18
+ "context",
19
+ "terminal",
20
+ "mcp"
21
+ ],
22
+ "type": "module",
23
+ "main": "./dist/index.js",
24
+ "bin": {
25
+ "persistmemory": "./dist/bin.js",
26
+ "pm": "./dist/bin.js"
27
+ },
28
+ "files": [
29
+ "dist",
30
+ "README.md",
31
+ "LICENSE"
32
+ ],
33
+ "engines": {
34
+ "node": ">=20"
35
+ },
36
+ "os": [
37
+ "darwin",
38
+ "linux",
39
+ "win32"
40
+ ],
41
+ "publishConfig": {
42
+ "access": "public"
43
+ },
44
+ "scripts": {
45
+ "prebuild": "yarn --cwd ../sdk-js build",
46
+ "build": "tsx build.ts",
47
+ "typecheck": "tsc --noEmit",
48
+ "test": "vitest run",
49
+ "cli": "tsx src/bin.ts",
50
+ "prepack": "tsx build.ts"
51
+ },
52
+ "dependencies": {},
53
+ "devDependencies": {
54
+ "@persistmemory/sdk": "0.1.0",
55
+ "esbuild": "^0.25.12",
56
+ "tsx": "^4.19.2",
57
+ "vitest": "^2.1.9"
58
+ }
59
+ }