**Motivations:** - Consigner l'état actuel du dépôt (cron, service-login-verify, website-skeleton, userwallet, docs). - Centraliser les modifications en attente. **Root causes:** - N/A (commit groupé). **Correctifs:** - N/A. **Evolutions:** - Cron quotidien restart services : script local sans SSH, systemd (bitcoin-signet, bitcoin, APIs, dashboard, userwallet, website-skeleton) + Docker (mempool, bitcoin-signet-instance). - Feature cron-restart-services-local : documentation et règle scripts locaux / pas d'SSH. - service-login-verify : module vérification login (buildAllowedPubkeys, verifyLoginProof, nonceCache). - website-skeleton : app iframe UserWallet, config, systemd unit. - userwallet : collectSignatures, relay. - docs : DOMAINS_AND_PORTS, README, WEBSITE_SKELETON ; features userwallet-contrat-login, timeouts-backoff, service-login-verify. **Pages affectées:** - data/restart-services-cron.sh, data/restart-services.log, data/sync-utxos.log - features/cron-restart-services-local.md, features/service-login-verify.md, features/userwallet-contrat-login-reste-a-faire.md, features/userwallet-timeouts-backoff.md - docs/DOMAINS_AND_PORTS.md, docs/README.md, docs/WEBSITE_SKELETON.md - configure-nginx-proxy.sh - service-login-verify/ (src, dist, node_modules) - userwallet/src/utils/collectSignatures.ts, userwallet/src/utils/relay.ts - website-skeleton/
66 lines
1.8 KiB
JSON
66 lines
1.8 KiB
JSON
{
|
|
"name": "@noble/secp256k1",
|
|
"version": "2.3.0",
|
|
"description": "Fastest 4KB JS implementation of secp256k1 ECDH & ECDSA signatures compliant with RFC6979",
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts",
|
|
"index.ts"
|
|
],
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"module": "index.js",
|
|
"types": "index.d.ts",
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"build:release": "npx jsbt esbuild test/build",
|
|
"build:smaller": "cd test/build; npm install terser@5.29.2; npx terser --ecma 2020 -m -c < ../../index.js",
|
|
"lint": "prettier --check 'index.ts' 'test/*.{js,ts}'",
|
|
"format": "prettier --write 'index.ts' 'test/*.{js,ts}'",
|
|
"test": "node test/index.js",
|
|
"test:bun": "bun test/index.js",
|
|
"test:deno": "deno --allow-env --allow-read test/index.js",
|
|
"bench": "node test/benchmark.js",
|
|
"loc": "echo \"`npm run --silent build:min | wc -c` symbols `wc -l < index.ts` LOC, `npm run --silent build:mingz | wc -c`B gzipped\""
|
|
},
|
|
"author": "Paul Miller (https://paulmillr.com)",
|
|
"homepage": "https://paulmillr.com/noble/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/paulmillr/noble-secp256k1.git"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@noble/hashes": "2.0.0-beta.1",
|
|
"@paulmillr/jsbt": "0.4.1",
|
|
"@types/node": "24.0.0",
|
|
"fast-check": "4.1.1",
|
|
"micro-bmark": "0.4.2",
|
|
"micro-should": "0.5.3",
|
|
"prettier": "3.5.3",
|
|
"typescript": "5.8.3"
|
|
},
|
|
"keywords": [
|
|
"secp256k1",
|
|
"rfc6979",
|
|
"signature",
|
|
"ecdsa",
|
|
"noble",
|
|
"cryptography",
|
|
"elliptic curve",
|
|
"ecc",
|
|
"curve",
|
|
"schnorr",
|
|
"bitcoin",
|
|
"ethereum"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"default": "./index.js"
|
|
}
|
|
},
|
|
"funding": "https://paulmillr.com/funding/"
|
|
}
|