@synapsync/cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "@synapsync/cli",
3
+ "version": "0.1.0",
4
+ "description": "Neural AI Orchestration Platform - CLI for managing AI skills across multiple providers",
5
+ "author": "SynapSync",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "bin": {
9
+ "synapse": "dist/index.js",
10
+ "synapsync": "dist/index.js"
11
+ },
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "exports": {
16
+ ".": {
17
+ "import": "./dist/index.js",
18
+ "types": "./dist/index.d.ts"
19
+ }
20
+ },
21
+ "scripts": {
22
+ "build": "tsup",
23
+ "dev": "tsup --watch",
24
+ "start": "node dist/index.js",
25
+ "test": "vitest run",
26
+ "test:watch": "vitest",
27
+ "test:coverage": "vitest run --coverage",
28
+ "lint": "eslint src/",
29
+ "lint:fix": "eslint src/ --fix",
30
+ "format": "prettier --write \"src/**/*.ts\"",
31
+ "format:check": "prettier --check \"src/**/*.ts\"",
32
+ "typecheck": "tsc --noEmit",
33
+ "prepublishOnly": "npm run typecheck && npm run build && npm test",
34
+ "prepare": "npm run build"
35
+ },
36
+ "engines": {
37
+ "node": ">=20.0.0"
38
+ },
39
+ "keywords": [
40
+ "cli",
41
+ "ai",
42
+ "llm",
43
+ "claude",
44
+ "openai",
45
+ "gemini",
46
+ "skills",
47
+ "agents",
48
+ "orchestration"
49
+ ],
50
+ "repository": {
51
+ "type": "git",
52
+ "url": "git+https://github.com/synapsync/cli.git"
53
+ },
54
+ "bugs": {
55
+ "url": "https://github.com/synapsync/cli/issues"
56
+ },
57
+ "homepage": "https://synapsync.dev",
58
+ "dependencies": {
59
+ "@clack/prompts": "^0.11.0",
60
+ "commander": "^12.1.0",
61
+ "ora": "^8.1.0",
62
+ "picocolors": "^1.1.1",
63
+ "yaml": "^2.6.0"
64
+ },
65
+ "devDependencies": {
66
+ "@types/node": "^22.0.0",
67
+ "@typescript-eslint/eslint-plugin": "^8.0.0",
68
+ "@typescript-eslint/parser": "^8.0.0",
69
+ "@vitest/coverage-v8": "^2.1.0",
70
+ "eslint": "^9.0.0",
71
+ "eslint-config-prettier": "^9.1.0",
72
+ "prettier": "^3.4.0",
73
+ "tsup": "^8.3.0",
74
+ "typescript": "^5.7.0",
75
+ "vitest": "^2.1.0"
76
+ }
77
+ }