-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.18 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.18 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
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
{
"name": "bip39",
"version": "1.0.0",
"description": "Bidirectional BIP39 word selector and Bitcoin mnemonic converter. Type words or click numbers. Privacy-focused.",
"type": "module",
"homepage": "https://bip39.jesusvalera.dev",
"repository": {
"type": "git",
"url": "https://github.com/JesusValeraDev/bip39.git"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"deploy": "vite build && gh-pages -d dist",
"test": "vitest run",
"test:all": "npm run test && npm run test:e2e",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run test/unit/",
"test:integration": "vitest run test/integration/",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"lighthouse": "npm run build && lhci autorun",
"lighthouse:collect": "npm run build && lhci collect",
"lighthouse:assert": "lhci assert",
"lighthouse:upload": "lhci upload",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\" \"test/**/*.ts\""
},
"keywords": [
"bip39",
"bitcoin",
"btc",
"cryptocurrency",
"mnemonic",
"seed-phrase",
"wordlist",
"converter",
"bidirectional",
"word-to-binary",
"binary-to-word",
"online-tool",
"privacy",
"multilingual"
],
"author": "JesusValeraDev (https://jesusvalera.dev)",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.38.0",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.56.0",
"@types/node": "^20.10.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"gh-pages": "^6.3.0",
"jsdom": "^27.0.0",
"prettier": "^3.6.2",
"typescript": "^5.3.0",
"typescript-eslint": "^8.46.1",
"vite": "^5.0.0",
"vitest": "^3.2.4",
"wait-on": "^8.0.1"
}
}