-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.08 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.08 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "tweakgc",
"version": "0.0.5",
"type": "module",
"description": "CLI tool to extend your GitHub Copilot CLI to accept more models from the API.",
"main": "dist/index.js",
"bin": {
"tweakgc": "./dist/index.js"
},
"scripts": {
"build": "tsc -b && vite build",
"watch": "vite build --watch --mode development",
"start": "node dist/index.js",
"start:bun": "bun run dist/index.js",
"dev": "bun run src/index.tsx",
"lint": "gts lint",
"test": "vitest",
"format": "prettier --write src",
"prepare": "npm run compile",
"clean": "gts clean",
"compile": "bunx tsx script/build.mts",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"keywords": [
"cli",
"terminal",
"ink",
"react",
"typescript",
"copilot",
"cli",
"customize",
"installation",
"theme",
"figlet"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DanielNappa/tweakgc-cli.git"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.37.0",
"@types/bun": "^1.3.0",
"@types/estree": "^1.0.8",
"@types/figlet": "^1.7.0",
"@types/node": "^24.7.1",
"@types/react": "^19.2.2",
"@types/which": "^3.0.4",
"@vitejs/plugin-react": "^5.0.4",
"eslint": "^9.37.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.4.0",
"gts": "^6.0.2",
"prettier": "^3.6.2",
"rollup-plugin-node-externals": "^8.1.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0",
"vite": "npm:rolldown-vite@^7.1.15",
"vitest": "^3.2.4"
},
"dependencies": {
"astring": "^1.9.0",
"chalk": "^5.6.2",
"commander": "^14.0.1",
"fast-npm-meta": "^0.4.7",
"figlet": "^1.9.3",
"globby": "^15.0.0",
"ink": "^6.3.1",
"ink-link": "^5.0.0",
"meriyah": "^6.1.4",
"package-manager-detector": "^1.4.0",
"react": "^19.2.0",
"which": "^5.0.0"
},
"trustedDependencies": [
"@swc/core"
]
}