forked from jcnelson/clarity-bitcoin
-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.15 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
{
"name": "clarity-bitcoin-tests",
"version": "1.0.0",
"description": "Run unit tests on this project.",
"private": true,
"type": "module",
"scripts": {
"test": "vitest run",
"test:report": "vitest run -- --coverage --costs",
"test:watch": "chokidar \"tests/**/*.ts\" \"contracts/**/*.clar\" -c \"npm run test:report\""
},
"author": "",
"license": "MIT",
"prettier": "@stacks/prettier-config",
"dependencies": {
"@hirosystems/clarinet-sdk": "2.15.0",
"@hirosystems/clarinet-sdk-wasm": "2.15.0",
"@noble/hashes": "^1.7.1",
"@stacks/common": "^6",
"@stacks/transactions": "^6",
"bitcoin-tx-proof": "git://github.com/friedger/bitcoin-tx-proof.git#00586b10632bac0968d63b0156b9c61e2da3bbcb",
"bitcoinjs-lib": "^6.1.7",
"chokidar-cli": "^3.0.0",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vitest": "^1.3.1",
"vitest-environment-clarinet": "^2.1.0"
},
"engines": {
"node": "22.14"
},
"pnpm": {
"overrides": {
"@hirosystems/clarinet-sdk": "2.15.0",
"@hirosystems/clarinet-sdk-wasm": "2.15.0"
}
},
"devDependencies": {
"@stacks/prettier-config": "^0.0.10"
}
}