-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.19 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
{
"name": "@oratis/lisa",
"version": "0.14.0",
"description": "An AI agent with a real self — runs locally, has desires, keeps a journal, evolves over time.",
"keywords": [
"ai",
"agent",
"anthropic",
"openai",
"gemini",
"deepseek",
"mistral",
"perplexity",
"grok",
"qwen",
"doubao",
"moonshot",
"kimi",
"glm",
"hunyuan",
"minimax",
"ollama",
"personal-assistant",
"self-evolving",
"sovereign-ai",
"pixel-art",
"mcp"
],
"homepage": "https://github.com/oratis/LISA#readme",
"bugs": {
"url": "https://github.com/oratis/LISA/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oratis/LISA.git"
},
"license": "MIT",
"author": "oratis",
"type": "module",
"bin": {
"lisa": "dist/cli.js"
},
"files": [
"dist/",
"channels.example.json",
"completions/",
"LICENSE",
"README.md",
"README.zh-CN.md"
],
"scripts": {
"build": "tsc -p tsconfig.json && npm run copy-assets",
"copy-assets": "mkdir -p dist/web && rm -rf dist/web/assets && ln -s ../../src/web/assets dist/web/assets",
"dev": "tsc -p tsconfig.json --watch",
"start": "node dist/cli.js",
"lisa": "node --enable-source-maps dist/cli.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "node --import tsx --test \"src/**/*.test.ts\"",
"test:watch": "node --import tsx --test --watch \"src/**/*.test.ts\"",
"generate-assets": "tsx scripts/generate-pixel-assets.ts",
"prepublishOnly": "npm run typecheck && npm test && npm run build && rm -rf dist/web/assets && cp -R src/web/assets dist/web/assets",
"postpublish": "npm run copy-assets"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.92.0",
"@google/genai": "^2.0.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"imapflow": "^1.4.2",
"openai": "^6.35.0",
"qrcode-terminal": "^0.12.0",
"undici": "^8.2.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/qrcode-terminal": "^0.12.2",
"sharp": "^0.34.5",
"tsx": "^4.21.0",
"typescript": "^5.7.0"
},
"optionalDependencies": {
"node-pty": "^1.1.0"
}
}