-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.04 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.04 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
{
"name": "purana",
"version": "2.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"compiled"
],
"description": "Convert TOTP secrets and sensitive strings to BIP39 mnemonic phrases for secure backup.",
"author": "fz6m",
"homepage": "https://github.com/xn-sakina/purana#README",
"repository": {
"type": "git",
"url": "https://github.com/xn-sakina/purana"
},
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"build:deps": "dora build",
"format": "dprint fmt",
"format:check": "dprint check",
"test": "vitest run",
"prepublishOnly": "rimraf dist && pnpm build"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@xn-sakina/dora": "^1.1.1",
"bip39": "^3.1.0",
"bochi": "^5.3.0",
"dprint": "^0.50.2",
"purana": "link:./",
"rimraf": "^6.0.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"zx": "^8.8.3"
},
"pnpm": {
"neverBuiltDependencies": []
},
"license": "MIT",
"packageManager": "pnpm@10.17.0"
}