-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.61 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "verify-coldcard-dice-seed",
"version": "1.0.35",
"description": "Verify whether your COLDCARD correctly generates seeds and addresses from dice rolls.",
"keywords": [
"bitcoin",
"wallet",
"seed",
"coldcard"
],
"homepage": "https://github.com/andreashuber69/verify-coldcard-dice-seed/blob/develop/README.md#----verify-coldcard-dice-seed",
"repository": {
"type": "git",
"url": "git+https://github.com/andreashuber69/verify-coldcard-dice-seed.git"
},
"bugs": {
"url": "https://github.com/andreashuber69/verify-coldcard-dice-seed/issues"
},
"license": "Unlicense",
"author": {
"name": "Andreas Huber"
},
"engines": {
"node": ">=20.11"
},
"type": "module",
"main": "dist/main.js",
"bin": {
"verify-coldcard-dice-seed": "dist/main.js"
},
"files": [
"/dist/",
"!/**/*.map",
"/*.md"
],
"scripts": {
"start": "tsx 'src/package/main.ts'",
"dev": "vite --config 'vite.site.config.ts' --open",
"preview": "npm run build && vite preview --config 'vite.site.config.ts' --open",
"prelint": "cspell '**' && markdownlint '**/*.md'",
"lint": "eslint",
"build": "tsc && tsc -p 'scripts' && vite build --config 'vite.package.config.ts' && vite build --config 'vite.site.config.ts'",
"test-no-coverage": "vitest --run",
"test": "vitest --run --coverage",
"show-coverage": "vite 'coverage/lcov-report' --logLevel error --open",
"ci": "npm run lint && npm run build && npm test",
"preversion": "tsx 'scripts/preversion.ts'",
"version": "tsx 'scripts/version.ts'",
"postversion": "git commit -a -m \"chore: start release v`cat package.json | jq -r '.version'`\"",
"finish-release": "git flow release finish -p -m \"chore: finish release\" v`cat package.json | jq -r '.version'`"
},
"overrides": {
"vite-plugin-node-polyfills": {
"vite": "^6.0.0"
}
},
"dependencies": {
"bech32": "^2.0.0",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.1.7",
"tiny-secp256k1": "^2.2.3"
},
"devDependencies": {
"@andreashuber69/eslint-config": "^2.1.1",
"@picocss/pico": "^1.5.13",
"@preact/preset-vite": "^2.10.0",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^20.17.14",
"@vitest/coverage-istanbul": "^3.0.3",
"coveralls": "^3.1.1",
"cspell": "^8.17.2",
"kiss-worker": "^3.1.1",
"markdownlint-cli": "^0.43.0",
"node-fetch": "^3.3.2",
"preact": "^10.25.4",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-plugin-node-polyfills": "^0.23.0",
"vite-plugin-wasm": "^3.4.1",
"vitest": "^3.0.3"
}
}