antigravity-tc 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +135 -0
- package/bin/reset-password.js +96 -0
- package/build.md +82 -0
- package/dev.md +102 -0
- package/env.example +12 -0
- package/images/Dashboard.jpg +0 -0
- package/images/Pengaturan.jpg +0 -0
- package/images/Sync.jpg +0 -0
- package/images/antigravity-tc.jpg +0 -0
- package/index.js +182 -0
- package/package.json +67 -0
- package/server.js +1366 -0
- package/src/autostart.js +115 -0
- package/src/cli.js +82 -0
- package/src/config.js +23 -0
- package/src/jwt.js +37 -0
- package/src/paths.js +59 -0
- package/src/tray.js +210 -0
- package/src/tunnel.js +198 -0
- package/web/dist/admin.html +22 -0
- package/web/dist/assets/admin-Boto8g_O.js +4 -0
- package/web/dist/assets/admin-DPInPm4J.css +1 -0
- package/web/dist/assets/index-BBB1az1b.js +1 -0
- package/web/dist/assets/index-Cb27-wjB.css +1 -0
- package/web/dist/assets/styles-WqBkvfmY.css +1 -0
- package/web/dist/assets/styles-pGt3BQwq.js +2 -0
- package/web/dist/ex.jpeg +0 -0
- package/web/dist/favicon.ico +0 -0
- package/web/dist/index.html +22 -0
- package/web/dist/robots.txt +2 -0
- package/web/public/ex.jpeg +0 -0
- package/web/public/favicon.ico +0 -0
- package/web/public/robots.txt +2 -0
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "antigravity-tc",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Antigravity Token Collector — tray app untuk mengumpulkan & mengelola donasi token Antigravity ke 9Router",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"antigravity-tc": "./index.js",
|
|
8
|
+
"antigravity-tc-reset-password": "./bin/reset-password.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"index.js",
|
|
12
|
+
"bin/",
|
|
13
|
+
"server.js",
|
|
14
|
+
"src/",
|
|
15
|
+
"web/dist/",
|
|
16
|
+
"web/public/",
|
|
17
|
+
"images/",
|
|
18
|
+
"env.example",
|
|
19
|
+
"dev.md",
|
|
20
|
+
"build.md"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"dev:web": "vite --config web/vite.config.mjs",
|
|
24
|
+
"build:web": "vite build --config web/vite.config.mjs",
|
|
25
|
+
"lint": "eslint .",
|
|
26
|
+
"prepublishOnly": "npm run lint && npm run build:web",
|
|
27
|
+
"start": "node index.js"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"antigravity",
|
|
31
|
+
"9router",
|
|
32
|
+
"token-collector",
|
|
33
|
+
"menubar",
|
|
34
|
+
"tray",
|
|
35
|
+
"cloudflare-tunnel",
|
|
36
|
+
"vue",
|
|
37
|
+
"vite"
|
|
38
|
+
],
|
|
39
|
+
"author": "hifzi",
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "https://github.com/hifzi/antigravity-tc"
|
|
43
|
+
},
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"type": "commonjs",
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@inquirer/prompts": "^8.0.1",
|
|
48
|
+
"auto-launch": "^5.0.6",
|
|
49
|
+
"better-sqlite3": "^13.0.3",
|
|
50
|
+
"conf": "^15.0.2",
|
|
51
|
+
"dotenv": "^17.4.2",
|
|
52
|
+
"jsonwebtoken": "^9.0.3",
|
|
53
|
+
"open": "^11.0.1",
|
|
54
|
+
"proper-lockfile": "^4.1.2",
|
|
55
|
+
"systray2": "^2.1.4"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@eslint/js": "^9.34.0",
|
|
59
|
+
"@vitejs/plugin-vue": "^6.0.8",
|
|
60
|
+
"autoprefixer": "^10.5.4",
|
|
61
|
+
"eslint": "^9.34.0",
|
|
62
|
+
"globals": "^16.3.0",
|
|
63
|
+
"tailwindcss": "^3.4.17",
|
|
64
|
+
"vite": "^8.2.2",
|
|
65
|
+
"vue": "^3.5.41"
|
|
66
|
+
}
|
|
67
|
+
}
|