-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 844 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 844 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
{
"name": "password-manager-bot",
"version": "1.0.0",
"description": "Discord bot for Bitwarden vault management with Notion integration",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"watch": "tsx watch src/index.ts",
"lint": "eslint src/**/*.ts",
"clean": "rm -rf dist"
},
"dependencies": {
"@types/axios": "^0.9.36",
"axios": "^1.6.7",
"discord.js": "^14.14.1",
"dotenv": "^16.4.1",
"node-cron": "^3.0.3"
},
"devDependencies": {
"@types/node": "^20.19.9",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=18.0.0"
}
}