-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.26 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
{
"name": "audius-mcp-atris",
"version": "2.4.0",
"description": "Audius MCP Server — Code Mode with Effect-TS",
"main": "dist/index.js",
"type": "module",
"bin": {
"audius-mcp-atris": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"lint": "eslint . --ext .ts",
"test": "npm run build && node --test",
"prepublishOnly": "npm run test"
},
"keywords": [
"mcp",
"audius",
"music",
"atris",
"ai",
"sdk"
],
"author": "glassBead",
"license": "MIT",
"homepage": "https://github.com/glassBead/audius-mcp-atris",
"repository": {
"type": "git",
"url": "git+https://github.com/glassBead/audius-mcp-atris.git"
},
"bugs": {
"url": "https://github.com/glassBead/audius-mcp-atris/issues"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"CHANGES.md",
"CHANGELOG.md"
],
"dependencies": {
"@effect/platform": "^0.94.5",
"@effect/platform-node": "^0.104.1",
"@effect/rpc": "^0.73.0",
"effect": "^3.19.18",
"quickjs-emscripten": "^0.31.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/node": "^20.10.5",
"typescript": "^5.7.0"
},
"packageManager": "pnpm@10.6.5"
}