glic-kit 1.0.1

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.
Files changed (4) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +80 -0
  3. package/dist/index.js +315 -0
  4. package/package.json +58 -0
package/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "glic-kit",
3
+ "version": "1.0.1",
4
+ "description": "Chrome Gemini AI one-click unlock tool for all platforms",
5
+ "homepage": "https://github.com/normal-coder/glic-kit",
6
+ "type": "module",
7
+ "bin": {
8
+ "glic-kit": "dist/index.js"
9
+ },
10
+ "scripts": {
11
+ "dev": "bun run src/index.ts",
12
+ "build": "bun run build.ts",
13
+ "start": "node dist/index.js",
14
+ "check": "bun run src/index.ts check",
15
+ "fix": "bun run src/index.ts fix",
16
+ "restore": "bun run src/index.ts restore",
17
+ "help": "bun run src/index.ts --help",
18
+ "test": "bun test",
19
+ "typecheck": "tsc --noEmit",
20
+ "prepublishOnly": "bun run build"
21
+ },
22
+ "keywords": [
23
+ "chrome",
24
+ "gemini",
25
+ "glic",
26
+ "ai",
27
+ "unlock",
28
+ "chrome-ai"
29
+ ],
30
+ "author": {
31
+ "email": "normal@normalcoder.com",
32
+ "name": "诺墨",
33
+ "url": "https://normalcoder.com"
34
+ },
35
+ "license": "MIT",
36
+ "files": [
37
+ "dist/index.js",
38
+ "README.md",
39
+ "LICENSE"
40
+ ],
41
+ "engines": {
42
+ "node": ">=18"
43
+ },
44
+ "dependencies": {
45
+ "commander": "^13.1.0",
46
+ "ink": "^6.2.1",
47
+ "ink-select-input": "^6.0.0",
48
+ "ink-spinner": "^5.0.0",
49
+ "ink-table": "^3.0.0",
50
+ "react": "^19.1.0"
51
+ },
52
+ "devDependencies": {
53
+ "@types/bun": "latest",
54
+ "@types/react": "^19.1.8",
55
+ "react-devtools-core": "^7.0.1",
56
+ "typescript": "^5.8.3"
57
+ }
58
+ }