-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.75 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
{
"name": "infernoflow",
"version": "0.44.17",
"description": "Persistent memory for AI coding sessions \u2014 captures what agents can't infer from code alone. Works with Copilot, Cursor, Claude, and Windsurf.",
"type": "module",
"bin": {
"infernoflow": "dist/bin/infernoflow.mjs"
},
"engines": {
"node": ">=18"
},
"files": [
"dist/bin",
"dist/lib",
"dist/templates",
"README.md"
],
"scripts": {
"test": "tsc --noEmit && vitest run",
"test:watch": "vitest",
"test:vitest": "vitest run",
"test:smoke": "node scripts/smoke.mjs && node scripts/json-smoke.mjs && node scripts/json-negative-smoke.mjs",
"test:install": "cross-env RUN_INSTALL_TESTS=1 vitest run tests/tarball-install.test.mjs",
"test:help": "node bin/infernoflow.mjs --help",
"typecheck": "tsc --noEmit",
"build": "node build.mjs",
"prepublishOnly": "echo skipping build",
"inferno:promote-draft": "node scripts/inferno-promote-draft.mjs"
},
"keywords": [
"ai",
"ai-memory",
"ai-context",
"ai-coding",
"session-memory",
"persistent-memory",
"agent-memory",
"agent-handoff",
"copilot",
"cursor",
"claude",
"windsurf",
"mcp",
"mcp-server",
"context-switching",
"developer-tools",
"cli",
"infernoflow",
"gotchas",
"coding-assistant"
],
"author": "infernoflow",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ronmiz/infernoflow.git"
},
"homepage": "https://infernoflow.dev",
"bugs": {
"url": "https://github.com/ronmiz/infernoflow/issues"
},
"devDependencies": {
"@types/node": "^25.9.0",
"cross-env": "^10.1.0",
"esbuild": "^0.28.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
}
}