-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 1.96 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
{
"name": "@stifler7/antigravity",
"version": "0.2.0",
"description": "Universal LLM tool server - Connect Claude, OpenAI, and Gemini to your workspace",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"antigravity": "./dist/cli/index.js"
},
"license": "MIT",
"author": "STiFLeR7",
"repository": {
"type": "git",
"url": "https://github.com/STiFLeR7/antigravity"
},
"homepage": "https://github.com/STiFLeR7/antigravity#readme",
"bugs": {
"url": "https://github.com/STiFLeR7/antigravity/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./providers": {
"import": "./dist/providers/index.js",
"types": "./dist/providers/index.d.ts"
},
"./server": {
"import": "./dist/server/index.js",
"types": "./dist/server/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli/index.js serve",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint src --ext .ts",
"format": "prettier --write src/**/*.ts",
"clean": "rimraf dist",
"prepublishOnly": "npm run build && npm test -- --run"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"openai",
"gemini",
"chatgpt",
"gpt-4",
"agent",
"ai-tools",
"function-calling",
"llm",
"anthropic",
"google-ai",
"tool-server",
"ide-tools"
],
"dependencies": {
"zod": "^3.22.4",
"uuid": "^9.0.1",
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/uuid": "^9.0.7",
"typescript": "^5.3.0",
"vitest": "^1.0.0",
"eslint": "^8.55.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5"
}
}