-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·37 lines (37 loc) · 911 Bytes
/
package.json
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": "bitwardensync",
"description": "Automatically Sync your Password Managers Data to Bitwarden.",
"version": "1.0.0",
"author": "NorkzYT",
"private": false,
"scripts": {
"clean:install": "rm -rf node_modules/ && rm -rf package-lock.json && npm i",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"repoTree": "python3 repoTree.py",
"preinstall": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "echo \"[Husky] pre-commit\"",
"commit-msg": "echo \"[Husky] commit-msg\""
}
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@types/node": "^20.12.12",
"husky": "^9.0.0",
"opencommit": "^3.0.4"
},
"engines": {
"npm": ">=7.10.0",
"node": ">=16.0.0"
},
"dependencies": {
"dotenv": "^16.4.5",
"otplib": "^12.0.1",
"puppeteer": "^22.9.0",
"ts-node": "^10.9.2"
}
}