-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.64 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.64 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": "termlings",
"version": "0.3.19",
"repository": {
"type": "git",
"url": "git+https://github.com/tomtev/termlings.git"
},
"scripts": {
"test": "bun test",
"test:watch": "bun test --watch",
"web:dev": "bun --cwd apps/web dev",
"web:build": "bun --cwd apps/web build",
"web:deploy": "bun --cwd apps/web deploy",
"desktop:dev": "npm --prefix apps/desktop run dev",
"desktop:check": "npm --prefix apps/desktop run check",
"desktop:build": "npm --prefix apps/desktop run build"
},
"devDependencies": {
"@opentui/core": "^0.1.82",
"@opentui/solid": "^0.1.82",
"solid-js": "^1.9.11"
},
"exports": {
".": "./src/index.ts",
"./design": "./src/design/index.ts",
"./design/jsx-runtime": "./src/design/jsx-runtime.ts",
"./design/jsx-dev-runtime": "./src/design/jsx-dev-runtime.ts",
"./engine": "./src/engine/index.ts",
"./svelte": "./src/svelte/index.ts",
"./react": "./src/react/index.ts",
"./vue": "./src/vue/index.ts",
"./ink": "./src/ink/index.ts"
},
"bin": {
"termlings": "bin/termlings.js"
},
"description": "Framework for building autonomous AI agents & teams in the terminal",
"files": [
"src",
"bin",
"templates",
"scripts",
"Dockerfile",
"bun.lock"
],
"homepage": "https://termlings.com",
"keywords": [
"avatar",
"pixel-art",
"svelte",
"react",
"vue",
"terminal",
"ink",
"cli"
],
"license": "MIT",
"type": "module",
"dependencies": {
"@fontsource/inter": "^5.2.8",
"@resvg/resvg-js": "^2.6.2",
"react": "^19.2.4",
"satori": "^0.25.0",
"termfont": "^0.1.2"
}
}