-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.78 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.78 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@travisennis/acai",
"version": "0.0.14",
"description": "An AI assistant for developing software.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"acai": "bin/acai",
"@travisennis/acai": "bin/acai"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"keywords": [
"cli",
"ai",
"llm",
"coding",
"assistant"
],
"author": "Travis Ennis",
"license": "MIT",
"scripts": {
"build": "tsc --pretty -p tsconfig.build.json",
"clean": "rm -rf ./dist/ ./coverage/ ./tsconfig.build.tsbuildinfo",
"compile": "tsc --pretty -p tsconfig.json",
"lint": "npm run lint:ast-grep && npm run lint:biome",
"lint:ast-grep": "sg scan",
"lint:ast-grep:fix": "sg scan --update-all",
"lint:biome": "biome lint",
"lint:biome:fix": "biome lint --unsafe --write",
"lint:fix": "npm run lint:ast-grep && npm run lint:biome:fix",
"lint:staged": "biome lint --error-on-warnings --no-errors-on-unmatched --staged",
"format:staged": "biome check --staged --formatter-enabled=true --linter-enabled=false --no-errors-on-unmatched",
"prepack": "npm run clean && npm run build",
"prepare": "husky",
"test": "node --no-warnings --require ./test/setup.js --test test/**/*.test.ts",
"test:minimal": "node --no-warnings --require ./test/setup.js --test --test-reporter=dot test/**/*.test.ts",
"test:coverage": "c8 node --no-warnings --require ./test/setup.js --test test/**/*.test.ts",
"test:full-coverage": "c8 --all node --no-warnings --require ./test/setup.js --test test/**/*.test.ts",
"pretest": "npm run typecheck",
"format": "biome check --formatter-enabled=true --linter-enabled=false --write ./ && biome format --write",
"dev": "node --no-warnings --env-file=.env ./source/index.ts",
"oxlint": "npm run oxlint:single -- ./source",
"oxlint:single": "oxlint --type-aware --ignore-path .gitignore -A all -c .oxlintrc.json",
"knip": "knip",
"knip:prod": "knip --production",
"fallow": "fallow --format json",
"setup": "node scripts/setup.ts",
"bootstrap": "npm run setup",
"update": "npx npm-check-updates --interactive --format group",
"cpd": "npx jscpd ./source",
"typecheck": "tsc --noEmit --pretty -p tsconfig.json",
"typecheck:staged": "npm run typecheck",
"check": "npm run typecheck && npm run lint:fix && npm run format",
"lint:length": "find source -name '*.ts' | xargs -I{} awk 'END{if(NR>500)print FILENAME\": \"NR\" lines\"}' {}"
},
"dependencies": {
"@ai-sdk/anthropic": "^4.0.20",
"@ai-sdk/deepseek": "^3.0.13",
"@ai-sdk/devtools": "^1.0.7",
"@ai-sdk/google": "^4.0.24",
"@ai-sdk/groq": "^4.0.13",
"@ai-sdk/open-responses": "^2.0.12",
"@ai-sdk/openai": "^4.0.20",
"@ai-sdk/openai-compatible": "^3.0.14",
"@crosscopy/clipboard": "^0.3.6",
"@travisennis/stdlib": "^0.0.14",
"ai": "^7.0.37",
"cheerio": "^1.2.0",
"diff": "^9.0.0",
"fdir": "^6.5.0",
"highlight.js": "^11.11.1",
"marked": "18.0.7",
"p-throttle": "^8.1.0",
"parse5": "^8.0.1",
"parse5-htmlparser2-tree-adapter": "^8.0.1",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"pino-roll": "^4.0.0",
"tiktoken": "^1.0.22",
"zod": "^4.4.3"
},
"devDependencies": {
"@ai-sdk/provider": "^4.0.3",
"@biomejs/biome": "2.5.5",
"@commitlint/config-conventional": "^21.2.0",
"@types/node": "^26.1.1",
"c8": "^12.0.0",
"commitlint": "^21.2.1",
"domhandler": "^6.0.1",
"fallow": "^3.9.1",
"husky": "^9.1.7",
"knip": "^6.29.0",
"oxlint": "^1.75.0",
"oxlint-tsgolint": "^7.0.2001",
"typescript": "^7.0.2"
},
"overrides": {
"undici": ">=7.28.0"
},
"engines": {
"node": ">=24"
},
"publishConfig": {
"access": "public"
}
}