-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.2 KB
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
{
"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": "biome lint && biome format && biome check",
"lint-fix": "biome lint --write && biome format --write && biome check --write"
},
"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": {
"@biomejs/biome": "1.9.4",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.8.2"
},
"dependencies": {
"buffer": "^6.0.3",
"protobufjs": "^7.4.0"
}
}