-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.31 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
{
"name": "magic-protocol",
"version": "2.3.0",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.js",
"import": "./dist/index.js",
"type": "module",
"sideEffects": false,
"files": [
"dist"
],
"prettier": "@stacks/prettier-config",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsup",
"dev:build": "pnpm build && pnpm dev:publish",
"dev:publish": "yalc publish --push",
"test": "vitest",
"electrum_server": "docker run -it --rm -p 50001:50001 -e COIN=\"Bitcoin\" -e NET=\"regtest\" -e DAEMON_URL=\"http://devnet:devnet@host.docker.internal:18443\" lukechilds/electrumx",
"electrum_wallet": "electrum --regtest",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@changesets/cli": "^2.26.2",
"@noble/hashes": "1.3.0",
"@scure/base": "1.1.1",
"@scure/btc-signer": "^1.0.0",
"micro-packed": "^0.3.2",
"micro-stacks": "^1.2.1"
},
"devDependencies": {
"@stacks/eslint-config": "^1.2.0",
"@stacks/prettier-config": "^0.0.10",
"eslint": "^8.40.0",
"pm2": "^5.3.0",
"prettier": "^2.8.8",
"tsup": "^6.7.0",
"tsx": "^3.12.3",
"typescript": "5.0.4",
"vitest": "^0.31.0",
"zod": "3.20.6"
}
}