forked from arkade-os/ts-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.09 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.09 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
85
86
87
88
89
90
91
{
"name": "@arkade-os/sdk",
"version": "0.1.1",
"description": "Bitcoin wallet SDK with Taproot and Ark integration",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "rimraf dist && pnpm run build:esm && node scripts/add-extensions.js && pnpm run build:cjs && pnpm run build:types && node scripts/generate-package-files.js",
"build:esm": "tsc -p tsconfig.esm.json --outDir dist/esm",
"build:cjs": "tsc -p tsconfig.cjs.json --outDir dist/cjs",
"build:types": "tsc -p tsconfig.json --outDir dist/types --emitDeclarationOnly",
"build:browser": "node scripts/build-browser.js",
"test": "vitest run",
"test:master": "ARK_ENV=master vitest run",
"test:unit": "vitest run --exclude test/integration.test.ts",
"test:setup": "node test/setup.js",
"test:setup-master": "node test/setup.js master",
"test:up-master": "docker compose -f docker-compose.yml up -d --build",
"test:down-master": "docker compose -f docker-compose.yml down",
"test:integration": "vitest run test/integration.test.ts",
"test:integration-master": "ARK_ENV=master vitest run test/integration.test.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:sw": "pnpm run build:browser && node test/serviceWorker/serve.js",
"format": "prettier --write src test examples",
"lint": "prettier --check src test examples",
"audit": "pnpm audit",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"prepublishOnly": "pnpm run build",
"release": "bash scripts/release.sh",
"release:dry-run": "bash scripts/release.sh --dry-run",
"release:cleanup": "bash scripts/release.sh --cleanup",
"precommit": "lint-staged"
},
"dependencies": {
"@noble/curves": "1.9.1",
"@noble/hashes": "1.8.0",
"@noble/secp256k1": "2.2.3",
"@scure/base": "1.2.6",
"@scure/btc-signer": "1.8.1",
"bip68": "1.0.4"
},
"devDependencies": {
"rimraf": "^5.0.0",
"@eslint/js": "^9.17.0",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "8.18.2",
"@vitest/coverage-v8": "2.1.9",
"esbuild": "^0.20.1",
"eslint": "^9.17.0",
"glob": "11.0.1",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"prettier": "3.4.2",
"typescript": "5.7.2",
"vitest": "2.1.9"
},
"keywords": [
"bitcoin",
"wallet",
"taproot",
"ark",
"sdk"
],
"author": "Ark Labs",
"license": "MIT",
"packageManager": "pnpm@9.15.2+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321",
"engines": {
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
}
}