-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.65 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
{
"name": "@icydotdev/runny",
"version": "0.1.5",
"description": "A local GUI for running npm/pnpm/yarn scripts across your project",
"type": "module",
"bin": {
"runny": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev:server": "tsx watch src/cli.ts",
"dev:client": "vite",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"build:client": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"build": "npm run build:client && npm run build:server",
"prepublishOnly": "npm run build"
},
"dependencies": {
"express": "^5.1.0",
"fast-glob": "^3.3.3",
"open": "^10.1.0",
"tree-kill": "^1.2.2",
"ws": "^8.18.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.5.0",
"@vitejs/plugin-react": "^4.3.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^5.5.0",
"autoprefixer": "^10.4.0",
"concurrently": "^9.1.0",
"lucide-react": "^0.468.0",
"postcss": "^8.4.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^3.4.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"zustand": "^5.0.0"
},
"author": "Sam Kavanagh",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/icydotdev/runny"
},
"keywords": [
"npm",
"scripts",
"gui",
"monorepo",
"pnpm",
"yarn",
"runner",
"dashboard"
]
}