-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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
{
"name": "gauth-decode",
"version": "0.1.1",
"description": "A package to decode Google Authenticator export data",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "jest",
"lint": "eslint --max-warnings=0 --config ./.eslintrc.cjs --ext .tsx,.ts ./src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VPKSoft/gauth-decode.git"
},
"keywords": [
"TOTP",
"google",
"authenticator",
"decode"
],
"author": "VPKSoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/VPKSoft/gauth-decode/issues"
},
"homepage": "https://github.com/VPKSoft/gauth-decode#readme",
"devDependencies": {
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^50.0.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unicorn": "^56.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^8.0.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.0.0",
"eslint": "^8.50.0"
},
"dependencies": {
"buffer": "^6.0.3",
"protobufjs": "^7.2.5"
}
}