-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.74 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
{
"name": "@samouraiwallet/auth47",
"version": "1.0.1",
"description": "A JS implementation of the Auth47 protocol",
"keywords": [
"bitcoin",
"bip47",
"bip-47",
"auth47",
"auth-47",
"paynym"
],
"type": "module",
"engines": {
"node": ">=20.x.x"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage",
"typescript": "tsc --noEmit",
"lint": "eslint --ext .ts src/ test/",
"build:clean": "rm -rf dist",
"build:esm": "tsc -p tsconfig.build.json",
"build": "npm run build:clean && npm run build:esm",
"prepack": "npm run lint && npm run typescript && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/Dojo-Open-Source-Project/auth47.git"
},
"bugs": {
"url": "https://github.com/Dojo-Open-Source-Project/auth47/issues"
},
"author": "Katana Cryptographic Ltd.",
"license": "LGPL-3.0",
"homepage": "https://github.com/Dojo-Open-Source-Project/auth47",
"dependencies": {
"@effect/schema": "^0.72.0",
"@samouraiwallet/bip47": "^1.0.0",
"@samouraiwallet/bitcoinjs-message": "^3.0.0",
"effect": "^3.7.0",
"fast-check": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.16.3",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unicorn": "^55.0.0",
"tiny-secp256k1": "^2.2.3",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}