-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.65 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
{
"name": "auto-continue-cli-agent",
"version": "0.1.0",
"description": "Supervisor lokal untuk memonitor usage & auto-continue sesi Claude Code / Antigravity CLI",
"keywords": [
"claude-code",
"antigravity",
"cli",
"usage-limit",
"auto-continue",
"supervisor",
"developer-tools"
],
"license": "Apache-2.0",
"author": {
"name": "Ziffany Firdinal",
"url": "https://ziffany.firdinal.my.id"
},
"homepage": "https://kampusmerah.com",
"repository": {
"type": "git",
"url": "git+https://github.com/ziffan/auto-continue-cli-agent.git"
},
"type": "module",
"private": true,
"bin": {
"acca": "dist/cli/index.js"
},
"engines": {
"node": ">=24"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc && node scripts/copy-migrations.js",
"dev": "tsx src/cli/index.ts",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.typecheck.json",
"lint": "eslint .",
"check": "npm run typecheck && npm run lint && npm run test"
},
"dependencies": {
"better-sqlite3": "12.11.1",
"commander": "14.0.2",
"node-pty": "1.1.0",
"typescript": "5.9.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "7.6.13",
"@types/node": "24.10.1",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"eslint": "^10.8.0",
"eslint-config-prettier": "10.1.8",
"globals": "14.0.0",
"prettier": "3.6.2",
"tsx": "4.20.6",
"vitest": "3.2.6"
},
"allowScripts": {
"better-sqlite3@12.11.1": true,
"esbuild@0.25.12": true,
"esbuild@0.28.1": true,
"node-pty@1.1.0": true
}
}