-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.29 KB
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
{
"name": "lessel",
"version": "0.1.0",
"description": "lessel : message pipeline framework. Listen, Execute, Send.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"bin": {
"lessel": "./packages/cli/bin/lessel.js"
},
"scripts": {
"build": "npm run build --workspaces",
"clean": "npm run clean --workspaces",
"start": "node packages/listener-discord/dist/app.js",
"init": "node packages/cli/bin/lessel.js init",
"docs": "npx typedoc && npx jsdoc packages/plugin-logger/index.js -d docs/api/plugin-logger"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Terminay/lessel.git"
},
"keywords": [
"discord",
"whatsapp",
"slack",
"message-pipeline",
"bot-framework",
"lessel"
],
"author": "",
"license": "MIT",
"workspaces": [
"packages/core",
"packages/listener-discord",
"packages/listener-slack",
"packages/listener-whatsapp",
"packages/sender-discord",
"packages/sender-slack",
"packages/sender-whatsapp",
"packages/cli",
"packages/plugin-logger"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"jsdoc": "^4.0.5",
"typedoc": "^0.28.20"
}
}