-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 887 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 887 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "manyplug",
"version": "1.3.1",
"description": "CLI plugin manager for ManyBot",
"man": ["docs/manyplug.1"],
"keywords": [
"manybot",
"plugin",
"cli",
"whatsapp"
],
"license": "MIT",
"author": "freakkdev",
"type": "module",
"main": "./bin/manyplug.js",
"bin": {
"manyplug": "bin/manyplug.js"
},
"scripts": {
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@freakk.dev/manyplug": "^1.0.1",
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"commander": "^11.0.0",
"fs": "^0.0.1-security",
"fs-extra": "^11.3.4",
"gradient-string": "^3.0.0",
"ora": "^8.0.1",
"pino": "^9.14.0",
"pino-pretty": "^11.0.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.4",
"vitest": "^4.1.4"
}
}