forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 KB
/
package.json
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
{
"name": "@elizaos/plugin-starter",
"description": "Plugin starter for elizaOS",
"version": "1.0.0-beta.7",
"private": true,
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/elizaos-plugins/plugin-starter"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"dependencies": {
"@elizaos/cli": "^1.0.0-beta.0",
"@elizaos/core": "^1.0.0-beta.0",
"zod": "3.24.2"
},
"devDependencies": {
"tsup": "8.4.0",
"prettier": "3.5.3"
},
"scripts": {
"start": "npx @elizaos/cli start",
"test-with-cli": "cd ../cli && bun run build && cd ../plugin-starter && elizaos test",
"dev": "npx @elizaos/cli dev",
"build": "tsup",
"lint": "prettier --write ./src",
"test": "npx @elizaos/cli test",
"publish": "npx @elizaos/cli plugin publish",
"format": "prettier --write ./src",
"format:check": "prettier --check ./src"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"zod": "3.24.2"
},
"gitHead": "b165ad83e5f7a21bc1edbd83374ca087e3cd6b33"
}