-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.38 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
89
90
91
92
{
"name": "@elizaos/plugin-starter",
"description": "${PLUGINDESCRIPTION}",
"version": "2.0.0-beta.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"packageType": "plugin",
"platform": "node",
"license": "UNLICENSED",
"author": "${GITHUB_USERNAME}",
"keywords": [
"plugin",
"elizaos"
],
"repository": {
"type": "git",
"url": "${REPO_URL}"
},
"homepage": "https://elizaos.ai",
"bugs": {
"url": "https://github.com/${GITHUB_USERNAME}/${PLUGINNAME}/issues"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"README.md",
".npmignore",
".gitignore",
"package.json"
],
"dependencies": {
"@elizaos/core": "workspace:*",
"@tanstack/react-query": "^5.90.16",
"clsx": "^2.1.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.18",
"vite": "^7.3.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^25.0.3",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.2.2",
"tailwindcss-animate": "^1.0.7",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
},
"scripts": {
"dev": "bun run build:watch",
"build": "bun run build.ts",
"lint": "bunx @biomejs/biome check --write --unsafe ./src",
"lint:check": "bunx @biomejs/biome check ./src",
"typecheck": "tsgo --noEmit",
"test:smoke": "bun run test.ts",
"test:component": "bunx vitest run src/__tests__/integration.test.ts",
"test:e2e": "bunx vitest run src/e2e/plugin-starter.e2e.test.ts",
"test:e2e:manual": "bun run test:e2e",
"test": "bun run test:smoke && bun run test:component && bun run test:e2e",
"format": "bunx @biomejs/biome format --write ./src",
"format:check": "bunx @biomejs/biome format ./src",
"build:watch": "bun run build.ts --watch"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"zod": "^4.4.3"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"API_KEY": {
"type": "string",
"description": "API key for the service"
}
}
},
"gitHead": "d5bd5c43bfebeb7ac02f9e029f924cb6cd5c2ec7"
}