-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 924 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 924 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
{
"name": "@eeveebot/github",
"version": "1.0.3",
"type": "module",
"description": "GitHub integration module for eevee",
"keywords": [
"eevee"
],
"main": "dist/main.mjs",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"test": "npx eslint src/",
"build": "npm run test && npx tsc",
"dev": "npm run build && node dist/main.mjs",
"update-libraries": "npm install --save @eeveebot/libeevee@latest"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^18.19.130",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^9.39.4",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@eeveebot/libeevee": "^4.2.5",
"better-sqlite3": "^12.8.0",
"nats": "^2.29.3"
}
}