forked from Dashlane/dashlane-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.67 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@dashlane/cli",
"version": "1.1.0",
"description": "Manage your Dashlane vault through a CLI tool",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"dcli": "dist/index.js"
},
"pkg": {
"assets": [
"node_modules/argon2/napi-v3/argon2.node",
"node_modules/better-sqlite3/build/Release/better_sqlite3.node",
"node_modules/keytar/build/Release/keytar.node"
]
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint src",
"format": "prettier --write src && eslint --fix src",
"start": "node dist",
"pkg:linux": "./prepare-pkg.sh glibc && pkg . -t node16-linux-x64 -o bundle/dcli-linux",
"pkg:macos": "./prepare-pkg.sh unknown && pkg . -t node16-macos-x64 -o bundle/dcli-macos",
"pkg:macos-arm": "./prepare-pkg.sh unknown && pkg . -t node16-macos-arm64 -o bundle/dcli-macos-arm",
"pkg:win": "./prepare-pkg.sh unknown && pkg . -t node16-win-x64 -o bundle/dcli-win.exe",
"pkg": "npm run build && npm run pkg:linux && npm run pkg:macos && npm run pkg:win",
"prepare": "husky install",
"test": "mocha"
},
"author": {
"name": "Corentin Mors",
"email": "[email protected]",
"url": "https://pixelswap.fr/"
},
"contributors": [
{
"name": "Jérôme Boillot"
},
{
"name": "Paul-Louis Hery"
},
{
"name": "Léos Julien"
}
],
"license": "Apache-2.0",
"devDependencies": {
"@types/async": "^3.2.12",
"@types/better-sqlite3": "^7.5.0",
"@types/chai": "^4.3.1",
"@types/inquirer": "^8.1.3",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"chai": "^4.3.6",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^7.0.4",
"mocha": "^10.0.0",
"pkg": "^5.7.0",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"argon2": "^0.28.3",
"better-sqlite3": "^7.5.1",
"clipboardy": "^2.3.0",
"commander": "^9.1.0",
"got": "^11.8.5",
"inquirer": "^8.2.0",
"inquirer-search-list": "^1.2.6",
"keytar": "^7.9.0",
"otplib": "^12.0.1",
"winston": "^3.7.2",
"xml-js": "^1.6.11",
"zlib": "^1.0.5"
},
"engines": {
"node": ">=16",
"npm": ">=8"
}
}