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{
"name": "github-package-visibility-automation",
"version": "2.0.0",
"description": "Automate changing GitHub package visibility from private to public using Playwright and Bun",
"type": "module",
"main": "make-packages-public.mjs",
"scripts": {
"start": "bun run make-packages-public.mjs",
"setup": "bun run setup-auth.mjs",
"dev": "bun --watch make-packages-public.mjs",
"test": "echo \"No tests configured\" && exit 0"
},
"keywords": [
"github",
"automation",
"playwright",
"packages",
"visibility",
"bun"
],
"author": "chenrui333",
"license": "MIT",
"dependencies": {
"playwright": "^1.49.0"
},
"engines": {
"bun": ">=1.0.0"
}
}