-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.55 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.55 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
{
"name": "claude-sync",
"version": "0.1.0",
"description": "Sync your Claude Code .claude/ directory across all your devices. One brain, everywhere.",
"keywords": [
"claude",
"claude-code",
"sync",
"developer-tools",
"productivity",
"multi-device",
"dotfiles",
"memory",
"ai",
"vibecoding"
],
"author": "claude-sync contributors",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/claude-sync/claude-sync"
},
"homepage": "https://github.com/claude-sync/claude-sync#readme",
"bugs": {
"url": "https://github.com/claude-sync/claude-sync/issues"
},
"bin": {
"claude-sync": "./dist/bin/claude-sync.js"
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/bin/claude-sync.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/ bin/ tests/",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^12.1.0",
"chalk": "^5.3.0",
"inquirer": "^9.3.0",
"chokidar": "^3.6.0",
"glob": "^10.4.0",
"fast-glob": "^3.3.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/inquirer": "^9.0.7",
"typescript": "^5.5.0",
"vitest": "^1.6.0",
"eslint": "^9.5.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0"
}
}