-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.3 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.3 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
{
"name": "@eeveebot/libeevee",
"version": "3.7.0",
"description": "eevee-bot nodejs libraries",
"homepage": "https://github.com/eeveebot/libeevee-js#readme",
"bugs": {
"url": "https://github.com/eeveebot/libeevee-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/eeveebot/libeevee-js.git"
},
"license": "CC-BY-SA-4.0",
"author": "Edwin Pers <pers.edwin@gmail.com>",
"type": "module",
"main": "dist/index.mjs",
"typings": "dist/index.d.mjs",
"module": "dist/index.mjs",
"scripts": {
"build": "npx eslint src/**/*.mts && npx tsc"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"@types/express": "^5.0.6",
"express": "^5.2.1",
"irc-colors": "^1.5.0",
"nats": "^2.29.3",
"prom-client": "^15.1.3",
"winston": "^3.19.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"esbuild": "^0.27.4",
"eslint": "^9.39.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"node-forge": "^1.3.3",
"prettier": "^3.8.1",
"prompts": "^2.4.2",
"typescript": "^5.9.3",
"uuid": "^13.0.0"
}
}