-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.95 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
{
"name": "synclaude",
"version": "1.3.2",
"description": "Interactive model selection tool for Claude Code with Synthetic AI models",
"main": "dist/index.js",
"bin": {
"synclaude": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"build:tsc": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"claude",
"anthropic",
"synthetic",
"ai",
"cli",
"model-selection",
"typescript",
"nodejs"
],
"author": "Synclaude Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/parnexcodes/synclaude"
},
"bugs": {
"url": "https://github.com/parnexcodes/synclaude/issues"
},
"homepage": "https://github.com/parnexcodes/synclaude#readme",
"dependencies": {
"axios": "^1.6.2",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"ink": "^3.2.0",
"zod": "^3.22.4",
"react": "^18.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@types/react": "^18.2.37",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"react-devtools-core": "^4.28.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"files": [
"dist/",
"README.md",
"LICENSE",
"scripts/"
],
"engines": {
"node": ">=18.0.0"
}
}