-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.78 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
{
"name": "sharkkey",
"version": "1.0.0",
"description": "🦈🔑 | averege encryption with a twist or two",
"main": "./src/index.js",
"bin": "./src/index.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --runInBand --verbose --no-cache",
"build": " ./node_modules/.bin/esbuild ./src/index.js --bundle --outdir=bundle --platform=node && pkg -t node16-win-x64 ./bundle/index.js --compress GZip -o dist/sharkkey-win-x64 && pkg -t node16-linux-x64 ./bundle/index.js --compress GZip -o dist/sharkkey-linux-x64 && pkg -t node16-macos-x64 ./bundle/index.js --compress GZip -o dist/sharkkey-macos-x64",
"build-win-path": " .\\node_modules\\.bin\\esbuild .\\src\\index.js --bundle --outdir=bundle --platform=node && pkg -t node16-win-x64 .\\bundle\\index.js --compress GZip -o dist/sharkkey-win-x64 && pkg -t node16-linux-x64 .\\bundle\\index.js --compress GZip -o dist/sharkkey-linux-x64",
"build-arm": "pkg -t node16-linux-arm64 .\\bundle\\index.js --compress GZip -o dist/sharkkey-linux-arm64"
},
"private": false,
"packageManager": "npm@9.6.6",
"type": "module",
"keywords": [
"encryption",
"cryptography",
"security",
"decryption"
],
"author": "Lunar",
"license": "UNLICENSED",
"dependencies": {
"clipboardy": "^3.0.0",
"commander": "^11.0.0",
"esbuild": "0.18.13",
"ip": "^1.1.8",
"md6-hash": "^1.0.0",
"node-machine-id": "^1.1.12",
"qrcode-terminal": "^0.12.0",
"readline-sync": "^1.4.10",
"totp.js": "^0.0.1"
},
"devDependencies": {
"eslint": "^8.45.0",
"jest": "^29.6.1",
"remark-preset-lint-markdown-style-guide": "^5.1.3"
}
}