-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.81 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.81 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
{
"name": "assa-mcp",
"version": "0.2.0",
"description": "Anti-Social Social Agent - MCP server for Twitter with rich UI components",
"author": "RL",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"bin": {
"assa-mcp": "./dist/index.js"
},
"scripts": {
"prepare": "cp .hooks/* .git/hooks/ && chmod +x .git/hooks/*",
"dev": "tsx watch src/index.ts",
"build:ui": "rm -rf dist/ui && mkdir -p dist/ui && VITE_APP=auth-button vite build && VITE_APP=tweet-preview vite build && VITE_APP=conversation-list vite build",
"build:server": "tsc",
"build": "bun run build:ui && bun run build:server",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"check": "biome check .",
"format": "biome check --write .",
"clean": "rm -rf dist",
"test": "bun test",
"test:watch": "bun test --watch"
},
"dependencies": {
"@arcadeai/arcadejs": "^2.1.0",
"@modelcontextprotocol/ext-apps": "^1.0.1",
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^17.2.3",
"playwright": "^1.58.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@types/bun": "^1.2.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"js-yaml": "^4.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"ultracite": "^7.1.1",
"vite": "^6.0.0",
"vite-plugin-singlefile": "^2.0.3"
},
"engines": {
"node": ">=20.0.0",
"bun": ">=1.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"twitter",
"goose",
"ai-agent",
"mcp-apps"
],
"repository": {
"type": "git",
"url": "https://github.com/YOUR_USERNAME/assa-mcp"
}
}