-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.48 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.48 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
{
"name": "@donnes/syncode",
"version": "1.1.9",
"description": "Sync AI code agent configs (Claude Code, Cursor, Windsurf, OpenCode) across machines and projects.",
"private": false,
"type": "module",
"bin": {
"syncode": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"test": "tsx scripts/execute-tests.ts",
"prepublishOnly": "npm run build",
"check:lint": "biome check . --diagnostic-level=error",
"check:unsafe": "biome check . --write --unsafe --diagnostic-level=error",
"check:types": "bunx tsc --noEmit"
},
"keywords": [
"ai-agents",
"claude-code",
"cursor",
"windsurf",
"opencode",
"vscode",
"ai-coding",
"code-agent",
"skill-conversion",
"syncode",
"dotfiles",
"configuration-management",
"developer-tools",
"ai-assistant",
"coding-assistant"
],
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/donnes/syncode.git"
},
"bugs": {
"url": "https://github.com/donnes/syncode/issues"
},
"homepage": "https://github.com/donnes/syncode#readme",
"author": "Donald Silveira",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.9.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@opencode-ai/sdk": "^1.1.41",
"@types/bun": "latest",
"@types/node": "^20.0.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.7.3"
}
}