-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.2 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
{
"name": "rive-playground",
"version": "1.2.0",
"description": "Inspect, control & export Rive .riv animations — CLI, MCP server, and visual playground",
"type": "module",
"main": "dist/mcp.js",
"bin": {
"rive-analyzer": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev:mcp": "tsx src/mcp.ts",
"dev:cli": "tsx src/cli.ts",
"start:mcp": "node dist/mcp.js",
"start:cli": "node dist/cli.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@clack/prompts": "^1.1.0",
"@modelcontextprotocol/sdk": "^1.12.0",
"@rive-app/canvas-advanced": "^2.38.1",
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"figlet": "^1.11.0",
"figures": "^6.1.0",
"glob": "^10.4.0",
"gradient-string": "^3.0.0",
"ora": "^9.3.0",
"yaml": "^2.8.3",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^4.1.2",
"tsx": "^4.0.0",
"typescript": "^5.4.0",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=18.0.0"
}
}