-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.72 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
{
"name": "@elizaos-plugins/client-slack",
"version": "0.25.6-alpha.1",
"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": "vitest run",
"test:watch": "vitest",
"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": {
"@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/node": "^18.15.11",
"rimraf": "^5.0.0",
"tsup": "^6.7.0",
"typescript": "^5.0.3",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
}
}