arendi-cli 0.1.0

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 (2) hide show
  1. package/dist/index.js +1459 -0
  2. package/package.json +55 -0
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "arendi-cli",
3
+ "version": "0.1.0",
4
+ "description": "CLI for AI-powered business idea generation with web research",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "bin": {
8
+ "arendi": "dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "keywords": [
14
+ "ai",
15
+ "business-ideas",
16
+ "cli",
17
+ "research",
18
+ "trends"
19
+ ],
20
+ "engines": {
21
+ "node": ">=20"
22
+ },
23
+ "scripts": {
24
+ "clean": "rm -rf dist",
25
+ "build": "tsup",
26
+ "dev": "tsx src/index.ts",
27
+ "dev:id": "tsx src/index.ts --country Indonesia --categories health,finance --format json --output ideas.json",
28
+ "prepublishOnly": "pnpm run build",
29
+ "test": "vitest run",
30
+ "test:coverage": "vitest run --coverage"
31
+ },
32
+ "dependencies": {
33
+ "@ai-sdk/anthropic": "^1",
34
+ "@ai-sdk/google": "^1",
35
+ "@ai-sdk/openai": "^1",
36
+ "ai": "^4",
37
+ "better-sqlite3": "^11",
38
+ "commander": "^13",
39
+ "dotenv": "^16",
40
+ "google-trends-api": "^4.9.2",
41
+ "zod": "^3"
42
+ },
43
+ "devDependencies": {
44
+ "@types/better-sqlite3": "^7",
45
+ "@types/node": "catalog:",
46
+ "@vitest/coverage-v8": "catalog:",
47
+ "@workspace/arendi": "workspace:*",
48
+ "@workspace/sqlite": "workspace:*",
49
+ "@workspace/typescript-config": "workspace:*",
50
+ "tsup": "^8",
51
+ "tsx": "^4",
52
+ "typescript": "catalog:",
53
+ "vitest": "catalog:"
54
+ }
55
+ }