forked from agentsea/flashbacker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.85 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.85 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
{
"name": "flashbacker",
"version": "2.4.1",
"description": "Claude Code state management with session continuity and AI personas",
"main": "lib/index.js",
"bin": {
"flashback": "bin/flashback"
},
"scripts": {
"build": "npm run build:compile && npm run build:copy-templates",
"build:compile": "tsc",
"build:copy-templates": "cp -r templates lib/ 2>/dev/null || true",
"postinstall": "node scripts/setup-prereqs.js --ensure-pm2 --verbose || echo 'Warning: PM2 auto-install failed, background intelligence disabled'",
"dev": "tsc --watch",
"test": "npm run build && jest",
"test:unit": "npm run build && jest tests/unit",
"test:integration": "npm run build && node tests/cli-integration.test.js",
"test:install": "npm run build && jest tests/install.e2e.test.js --coverage=false",
"test:watch": "npm run build && jest --watch",
"test:coverage": "npm run build && jest --coverage",
"test:ci": "npm run build && jest --ci --coverage --watchAll=false",
"test:performance": "npm run build && node tests/performance.test.js",
"test:clean": "node scripts/clean-test-artifacts.js",
"setup": "node scripts/setup.js",
"setup:prereqs": "node scripts/setup-prereqs.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"prepare": "npm run build"
},
"keywords": [
"claude-code",
"state-management",
"ai",
"hooks",
"personas"
],
"author": "Claude Code Community",
"license": "MIT",
"dependencies": {
"@vscode/ripgrep": "^1.15.14",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"diff": "^5.2.0",
"eslint-scope": "^8.4.0",
"fs-extra": "^11.2.0",
"meriyah": "^6.0.4",
"tree-sitter": "^0.21.1",
"tree-sitter-go": "^0.23.4",
"tree-sitter-java": "^0.23.5",
"tree-sitter-javascript": "^0.23.1",
"tree-sitter-python": "^0.21.0",
"tree-sitter-rust": "^0.21.0",
"uuid": "^9.0.1",
"zod": "^3.23.8",
"web-tree-sitter": "^0.25.8",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/eslint-scope": "^8.3.1",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0 <25.0.0"
},
"files": [
"lib/",
"bin/",
"templates/",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/agentsea/flashbacker.git"
},
"bugs": {
"url": "https://github.com/agentsea/flashbacker/issues"
},
"homepage": "https://github.com/agentsea/flashbacker#readme"
}