forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.9 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
{
"name": "@elizaos/plugin-task-coordinator",
"version": "2.0.3-beta.7",
"type": "module",
"main": "./dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"eliza-source": {
"types": "./src/index.ts",
"import": "./src/index.ts",
"default": "./src/index.ts"
},
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./*.css": "./dist/*.css",
"./*": {
"types": "./dist/*.d.ts",
"eliza-source": {
"types": "./src/*.ts",
"import": "./src/*.ts",
"default": "./src/*.ts"
},
"import": "./dist/*.js",
"default": "./dist/*.js"
}
},
"dependencies": {
"@elizaos/core": "workspace:*",
"@elizaos/plugin-commands": "workspace:*",
"@elizaos/shared": "workspace:*",
"@elizaos/ui": "workspace:*",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"lucide-react": "^1.0.0",
"marked": "^18.0.4",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"elizaos": {
"app": {
"heroImage": "assets/hero.png"
}
},
"publishConfig": {
"access": "public"
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "bun run build:js && bun run build:views && bun run build:types",
"typecheck": "tsgo --noEmit -p tsconfig.build.json",
"clean": "node ../../packages/scripts/rm-path-recursive.mjs dist",
"build:js": "tsup --config ../tsup.plugin-packages.shared.ts",
"build:views": "bunx --bun vite build --config vite.config.views.ts",
"build:types": "tsc --noCheck -p tsconfig.build.json",
"test": "vitest run --config vitest.config.ts",
"test:unit": "vitest run --config vitest.config.ts",
"test:e2e:manual": "vitest run --config vitest.live.config.ts"
},
"files": [
"assets",
"dist"
],
"devDependencies": {
"tsup": "^8.5.1",
"vite": "^8.0.0"
}
}