-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 908 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 908 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
{
"name": "@eeveebot/cli",
"version": "1.2.15",
"description": "eevee-bot cli interfaces",
"homepage": "https://github.com/eeveebot/cli#readme",
"bugs": {
"url": "https://github.com/eeveebot/cli/issues"
},
"bin": {
"eevee-monitor": "./app/bin/monitor.mjs",
"eevee": "./app/bin/cli.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/eeveebot/cli.git"
},
"license": "CC-BY-SA-4.0",
"author": "Edwin Pers <pers.edwin@gmail.com>",
"type": "module",
"main": "app/main.mjs",
"scripts": {
"test": "eslint app/",
"update-libraries": "npm install --save @eeveebot/libeevee@latest"
},
"dependencies": {
"@eeveebot/libeevee": "^3.7.0",
"nats": "^2.29.3",
"yargs": "^18.0.0"
},
"devDependencies": {
"eslint": "^9.39.4",
"globals": "^16.5.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}