-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.46 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.46 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
87
88
{
"name": "@elizaos/plugin-companion",
"version": "2.0.0-beta.3",
"type": "module",
"description": "Companion app package with the VRM scene runtime and avatar utilities.",
"main": "./dist/index.js",
"scripts": {
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "biome check src/",
"test": "bunx vitest run --config ./vitest.config.ts",
"storybook": "storybook dev -p 6007",
"build-storybook": "storybook build",
"build": "bun run build:js && bun run build:views && bun run build:types",
"clean": "rm -rf dist",
"build:js": "tsup --config ../tsup.plugin-packages.shared.ts",
"build:views": "vite build --config vite.config.views.ts",
"build:types": "tsc --noCheck -p tsconfig.build.json"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./plugin": {
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.js",
"default": "./dist/plugin.js"
},
"./*.css": "./dist/*.css",
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js",
"default": "./dist/*.js"
}
},
"dependencies": {
"@elizaos/agent": "workspace:*",
"@elizaos/app-core": "workspace:*",
"@elizaos/plugin-wallet-ui": "workspace:*",
"@elizaos/core": "workspace:*",
"@elizaos/shared": "workspace:*",
"@elizaos/ui": "workspace:*",
"lucide-react": "^1.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@pixiv/three-vrm": "^3.5.2",
"@playwright/test": "^1.58.2",
"@storybook/addon-a11y": "^10.0.0",
"@storybook/addon-docs": "^10.0.0",
"@storybook/addon-themes": "^10.0.0",
"@storybook/react": "^10.0.0",
"@storybook/react-vite": "^10.0.0",
"@types/node": "^25.0.6",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/three": "^0.184.0",
"dotenv": "^17.2.3",
"storybook": "^10.0.0",
"three": "^0.184.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.0.17",
"vite": "^8.0.0"
},
"peerDependencies": {
"@pixiv/three-vrm": "^3.4.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"three": "^0.184.0"
},
"elizaos": {
"app": {
"displayName": "Eliza Companion",
"category": "game",
"heroImage": "assets/hero.png"
}
},
"publishConfig": {
"access": "public"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
]
}