-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 964 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 964 Bytes
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
{
"name": "runner-manager",
"version": "1.3.2",
"description": "A basic CLI to manage Github self-hosted runners on your machine",
"keywords": [
"github",
"actions",
"runners",
"runner"
],
"engines": {
"node": ">=22"
},
"homepage": "https://github.com/rvanbaalen/runner-manager#readme",
"bugs": {
"url": "https://github.com/rvanbaalen/runner-manager/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rvanbaalen/runner-manager.git"
},
"bin": {
"runner-manager": "./index.js"
},
"license": "MIT",
"author": "Robin van Baalen",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "vite --config=ghpages.config.js",
"build": "vite build --config=ghpages.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.15",
"vite": "^6.2.2"
}
}