-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.05 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
{
"name": "claude-code-smart-fork",
"version": "1.0.12",
"description": "Smart session forking for Claude Code - find and resume relevant historical sessions across projects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"smart-fork": "dist/index.js",
"cc-fork": "dist/index.js",
"fork-detect": "dist/index.js"
},
"files": [
"dist/**/*",
"scripts/**/*",
"LICENSE",
"README.md",
"README.zh-CN.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build && npm test",
"prepare": "npm run build",
"postinstall": "node scripts/install.js"
},
"keywords": [
"claude-code",
"claude",
"fork",
"session",
"search",
"vector",
"semantic-search",
"ai",
"cli"
],
"author": "fjibj",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fjibj/claude-code-smart-fork.git"
},
"bugs": {
"url": "https://github.com/fjibj/claude-code-smart-fork/issues"
},
"homepage": "https://github.com/fjibj/claude-code-smart-fork#readme",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.1.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=16.0.0"
}
}