-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@syrin/cli",
"version": "1.5.0",
"description": "Syrin is a runtime intelligence system that makes MCP servers debuggable, testable, and safe to run in production.",
"type": "module",
"main": "dist/index.js",
"bin": {
"syrin": "dist/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/config/syrin.template.yaml",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.12.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"debugging",
"testing",
"cli",
"runtime-intelligence",
"llm",
"ai"
],
"directories": {
"doc": "docs"
},
"scripts": {
"prepare": "husky",
"build": "tsc && tsc-alias -p tsconfig.json -f && npm run copy:template",
"copy:template": "cp src/config/syrin.template.yaml dist/config/syrin.template.yaml",
"prepublishOnly": "npm run build",
"syrin": "sh -c 'npm run build && node dist/index.js \"$@\"' --",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,json,md}\"",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"npm:dry-run": "npm publish --dry-run",
"npm:publish": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Syrin-Labs/cli.git"
},
"author": "Syrin Labs Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/Syrin-Labs/cli/issues"
},
"homepage": "https://github.com/Syrin-Labs/cli#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.2.0",
"@types/react": "^19.2.10",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.72.1",
"@apidevtools/json-schema-ref-parser": "^15.2.2",
"@modelcontextprotocol/sdk": "^1.25.3",
"@xenova/transformers": "^2.17.2",
"commander": "^14.0.3",
"ink": "^6.6.0",
"ink-text-input": "^6.0.0",
"inquirer": "^13.2.2",
"js-yaml": "^4.1.1",
"ollama": "^0.6.3",
"openai": "^6.17.0",
"react": "^19.2.4",
"uuid": "^13.0.0",
"zod": "^4.3.6"
}
}