forked from zk-coins/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.21 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@zkcoins/sdk",
"version": "0.4.0",
"description": "Pure-TypeScript wallet SDK for zkCoins — BIP-39/32 derivation, Schnorr signing, typed REST client, high-level account adapter.",
"keywords": [
"zkcoins",
"bitcoin",
"wallet",
"sdk",
"schnorr",
"bip-32",
"bip-39",
"bip-340"
],
"homepage": "https://github.com/zk-coins/sdk#readme",
"bugs": {
"url": "https://github.com/zk-coins/sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zk-coins/sdk.git"
},
"license": "MIT",
"author": "zkCoins contributors",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist coverage .tsbuildinfo",
"typecheck": "tsc --noEmit",
"lint": "eslint . --max-warnings 0 && prettier --check .",
"lint:fix": "eslint . --fix && prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:cross": "vitest run --config vitest.cross.config.ts",
"test:live": "vitest run --config vitest.live.config.ts",
"version": "node scripts/sync-version.cjs && git add src/version.ts",
"prepare": "npm run build",
"prepublishOnly": "npm run clean && npm run lint && npm run typecheck && npm run test && npm run build"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@noble/curves": "^2.2.0",
"@noble/hashes": "^2.2.0",
"@scure/bip32": "^2.2.0",
"@scure/bip39": "^2.2.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"msw": "^2.14.6",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1",
"vitest": "^4.1.8"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}