-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.23 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
{
"name": "@migiht/autoqq",
"version": "0.1.4",
"description": "Pre-warms AI coding CLI rate-limit windows on a schedule, so your workday overlaps three rolling windows instead of two.",
"type": "module",
"bin": {
"autoqq": "dist/cli.js"
},
"files": [
"dist",
"install.sh"
],
"os": [
"linux"
],
"engines": {
"node": ">=20.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Migiht/autoqq.git"
},
"homepage": "https://github.com/Migiht/autoqq#readme",
"bugs": {
"url": "https://github.com/Migiht/autoqq/issues"
},
"scripts": {
"build": "tsdown",
"dev": "tsx src/cli.ts",
"typecheck": "tsc --noEmit",
"test": "tsx --test src/**/*.test.ts",
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
},
"license": "MIT",
"dependencies": {
"@clack/prompts": "^1.7.0",
"commander": "^13.1.0",
"conf": "^13.1.0",
"env-paths": "^3.0.0",
"execa": "^9.5.2",
"picocolors": "^1.1.1",
"pino": "^9.6.0",
"pino-roll": "^3.1.0",
"which": "^5.0.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/which": "^3.0.4",
"tsdown": "^0.9.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}