-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 831 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 831 Bytes
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
{
"name": "@elizaos/configbench",
"version": "2.0.0-beta.0",
"type": "module",
"description": "Configuration & Secrets Security Benchmark for @elizaos/core secrets and built-in plugin-manager",
"main": "./dist/index.js",
"scripts": {
"bench": "bun run src/index.ts",
"bench:eliza": "bun run src/index.ts --eliza",
"bench:all": "bun run src/index.ts --eliza --all",
"test": "vitest run",
"test:watch": "vitest",
"lint": "bunx @biomejs/biome check --write --unsafe .",
"typecheck": "tsc --noEmit",
"build": "bun run typecheck"
},
"dependencies": {
"@elizaos/core": "workspace:*"
},
"devDependencies": {
"@types/node": "^25.0.3",
"bun-types": "1.3.13",
"vitest": "4.1.5",
"typescript": "^6.0.3"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
]
}