-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 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
{
"name": "claudeport",
"version": "0.3.0",
"description": "Sync your Claude Code configuration (settings, skills, agents, plugin selections) across machines via your own git repo",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/radekBednarik/claudeport.git"
},
"homepage": "https://radekbednarik.github.io/claudeport/",
"bin": {
"claudeport": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.7.1",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"prepublishOnly": "pnpm build && pnpm test",
"test": "vitest run",
"test:watch": "vitest",
"test:local:setup": "bash scripts/local-test.sh setup",
"test:local:teardown": "bash scripts/local-test.sh teardown",
"test:local:reset": "bash scripts/local-test.sh reset",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"format": "biome format --write",
"check": "biome check",
"check:fix": "biome check --write"
},
"keywords": [
"claude",
"claude-code",
"sync",
"dotfiles",
"config"
],
"license": "MIT",
"dependencies": {
"commander": "^14.0.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@biomejs/biome": "2.5.4",
"@types/node": "^24.0.0",
"typescript": "^5.8.0",
"vitest": "^3.2.0"
}
}