forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.79 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
{
"name": "@elizaos/client-slack",
"version": "0.1.7",
"description": "Slack client plugin for Eliza framework",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"@elizaos/source": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"test": "jest",
"lint": "eslint --fix --cache .",
"clean": "rimraf dist",
"dev": "tsup src/index.ts --watch",
"example": "ts-node src/examples/standalone-example.ts",
"example:attachment": "ts-node src/examples/standalone-attachment.ts",
"example:summarize": "ts-node src/examples/standalone-summarize.ts",
"example:transcribe": "ts-node src/examples/standalone-transcribe.ts"
},
"dependencies": {
"@elizaos/core": "workspace:*",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@slack/events-api": "^3.0.1",
"@slack/web-api": "^6.8.1",
"body-parser": "^1.20.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fluent-ffmpeg": "^2.1.2",
"node-fetch": "^2.6.9"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"jest": "^29.5.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsup": "^8.3.5",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}