forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
76 lines (76 loc) · 1.97 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@elizaos/core",
"version": "1.0.0-beta.3",
"description": "",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup && tsc -p tsconfig.build.json",
"watch": "tsc --watch",
"clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json tsconfig.tsbuildinfo",
"dev": "tsup --watch",
"build:docs": "cd docs && bun run build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"format": "prettier --write ./src",
"format:check": "prettier --check ./src",
"lint": "prettier --write ./src"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "9.16.0",
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-replace": "5.0.7",
"@rollup/plugin-terser": "0.1.0",
"@rollup/plugin-typescript": "11.1.6",
"@types/mocha": "10.0.10",
"@types/node": "^22.13.9",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "8.26.0",
"@typescript-eslint/parser": "8.26.0",
"@vitest/coverage-v8": "2.1.5",
"lint-staged": "15.2.10",
"nodemon": "3.1.7",
"pm2": "5.4.3",
"prettier": "3.5.3",
"rimraf": "6.0.1",
"rollup": "2.79.2",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"tsup": "^8.4.0",
"typescript": "5.8.2"
},
"dependencies": {
"dotenv": "16.4.5",
"events": "^3.3.0",
"glob": "11.0.0",
"handlebars": "^4.7.8",
"js-sha1": "0.7.0",
"langchain": "^0.3.15",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"unique-names-generator": "4.7.1",
"uuid": "11.0.3"
},
"publishConfig": {
"access": "public"
},
"gitHead": "9834bbd06128356b44b091f022fc2a2d024a875e"
}