-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.53 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.53 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@runloop/rl-cli",
"version": "1.13.3",
"description": "Beautiful CLI for the Runloop platform",
"type": "module",
"bin": {
"rli": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"build:mcp": "pnpm run build && node scripts/build-mcp.js",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"start:debug": "node dist/cli.js 2> debug.log",
"prepublishOnly": "pnpm run build",
"version:patch": "pnpm version patch",
"version:minor": "pnpm version minor",
"version:major": "pnpm version major",
"release": "pnpm run build && pnpm publish",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json}\"",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
"test:components": "NODE_OPTIONS='--experimental-vm-modules' jest --config jest.components.config.js --coverage --forceExit",
"test:e2e": "NODE_OPTIONS='--experimental-vm-modules' jest --config jest.e2e.config.js --forceExit",
"test:router": "NODE_OPTIONS='--experimental-vm-modules' jest --config jest.router.config.js --forceExit",
"docs:commands": "pnpm run build && node scripts/generate-command-docs.js",
"prepare": "husky"
},
"packageManager": "[email protected]",
"keywords": [
"runloop",
"cli",
"devbox",
"cloud",
"development"
],
"author": "Runloop",
"license": "MIT",
"badges": [
{
"url": "https://img.shields.io/npm/v/@runloop/rl-cli",
"description": "NPM version"
},
{
"url": "https://img.shields.io/npm/dw/@runloop/rl-cli",
"description": "NPM downloads"
}
],
"repository": {
"type": "git",
"url": "https://github.com/runloopai/rl-cli.git"
},
"bugs": {
"url": "https://github.com/runloopai/rl-cli/issues"
},
"homepage": "https://github.com/runloopai/rl-cli#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@js-temporal/polyfill": "^0.5.1",
"@modelcontextprotocol/sdk": "^1.26.0",
"@runloop/api-client": "1.10.3",
"@types/express": "^5.0.6",
"adm-zip": "^0.5.16",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"conf": "^15.0.2",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"figures": "^6.1.0",
"gradient-string": "^3.0.0",
"ink": "^6.6.0",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-link": "^5.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "19.2.0",
"yaml": "^2.8.2",
"zustand": "^5.0.10"
},
"pnpm": {
"overrides": {
"tmp": "^0.2.5"
}
},
"devDependencies": {
"@anthropic-ai/mcpb": "^2.1.2",
"@types/adm-zip": "^0.5.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.19.7",
"@types/react": "^19.2.10",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^6.1.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"ink-testing-library": "^4.0.0",
"jest": "^29.7.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}