-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.36 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
{
"name": "@codeturion/drev",
"version": "0.2.0",
"description": "Make Claude Code sessions portable: share them with friends and teammates, or resume them on any machine. Bin: `drev`.",
"type": "module",
"license": "MIT",
"author": "Fuat Can Köseoğlu",
"homepage": "https://github.com/Codeturion/drev#readme",
"bugs": {
"url": "https://github.com/Codeturion/drev/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Codeturion/drev.git"
},
"keywords": [
"drev",
"claude",
"claude-code",
"anthropic",
"ai",
"session",
"share",
"handoff",
"resume",
"transcript",
"developer-tools",
"cli"
],
"engines": {
"node": ">=20"
},
"bin": {
"drev": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage --passWithNoTests",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"dependencies": {
"chalk": "^5",
"commander": "^12",
"js-yaml": "^4",
"ora": "^8"
},
"devDependencies": {
"@types/js-yaml": "^4",
"@types/node": "^20",
"@vitest/coverage-v8": "^4",
"tsup": "^8",
"typescript": "^5",
"vitest": "^4"
}
}