-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.97 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.97 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": "@gopher.security/gopher-mcp-js",
"version": "0.1.2",
"description": "TypeScript SDK for Gopher Orch - AI Agent orchestration framework with native performance",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Gopher Security <dev@gophersecurity.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/GopherSecurity/gopher-mcp-js.git"
},
"keywords": [
"gopher",
"mcp",
"ai",
"agent",
"orchestration",
"llm",
"ffi"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"example": "tsx examples/client_example_json.ts",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts' 'examples/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts' 'examples/**/*.ts'",
"prepublishOnly": "npm run build",
"postinstall": "node scripts/download-native.js || true",
"update-version": "node scripts/update-version.js"
},
"dependencies": {
"koffi": "^2.9.0"
},
"optionalDependencies": {
"@gopher.security/gopher-orch-darwin-arm64": "0.1.2",
"@gopher.security/gopher-orch-darwin-x64": "0.1.2",
"@gopher.security/gopher-orch-linux-arm64": "0.1.2",
"@gopher.security/gopher-orch-linux-x64": "0.1.2",
"@gopher.security/gopher-orch-win32-arm64": "0.1.2",
"@gopher.security/gopher-orch-win32-x64": "0.1.2"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"files": [
"dist",
"native/lib",
"scripts"
]
}