-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) 路 2.3 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) 路 2.3 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
{
"name": "@ariso-ai/ivan",
"version": "1.0.45",
"type": "module",
"main": "dist/index.js",
"bin": {
"ivan": "./dist/index.js"
},
"scripts": {
"build": "tsc --noEmitOnError false",
"watch": "tsc --watch",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"format": "prettier --write \"src/**/*.{ts,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,json}\"",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"typecheck": "tsc --noEmit",
"test": "npm run build && node --experimental-vm-modules ./node_modules/jest/bin/jest.js --runInBand --config jest.config.cjs",
"test:e2e:learnings": "node scripts/test-learnings-e2e.mjs",
"prepare": "npm run build && git config core.hooksPath .githooks"
},
"author": "Ariso AI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ariso-ai/ivan.git"
},
"bugs": {
"url": "https://github.com/ariso-ai/ivan/issues"
},
"homepage": "https://github.com/ariso-ai/ivan#readme",
"files": [
"dist",
".github/workflows/ivanagent.yml",
"README.md",
"LICENSE"
],
"keywords": [
"cli",
"ai",
"orchestration",
"claude",
"openai"
],
"description": "AI-powered development assistant that automates complex workflows by breaking down tasks, implementing them with Claude, and creating PRs. Install with: npm i -g @ariso-ai/ivan",
"devDependencies": {
"@eslint/js": "^9.34.0",
"@jest/globals": "^30.1.2",
"@types/better-sqlite3": "^7.6.13",
"@types/inquirer": "^9.0.9",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.1.3",
"prettier": "^3.8.1",
"ts-jest": "^29.4.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.227",
"@anthropic-ai/sdk": "^0.111.0",
"@types/express": "^5.0.3",
"better-sqlite3": "^12.2.0",
"chalk": "^5.6.0",
"commander": "^14.0.0",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"inquirer": "^12.9.4",
"kysely": "^0.28.5",
"openai": "^7.4.0",
"ora": "^8.2.0",
"sqlite-vec": "^0.1.9"
}
}