-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.47 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": "b20",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "clarinet test tests/*",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexgo-io/b20.git"
},
"keywords": [],
"author": "ALEX Dev Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexgo-io/b20/issues"
},
"homepage": "https://github.com/alexgo-io/b20#readme",
"devDependencies": {
"@noble/hashes": "^1.3.0",
"@scure/base": "^1.1.1",
"@scure/btc-signer": "^1.0.0",
"@stacks/common": "^6.0.0",
"@stacks/keychain": "^4.3.8",
"@stacks/network": "^6.3.0",
"@stacks/transactions": "^6.5.0",
"@types/node": "^18.15.11",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"tiny-secp256k1": "^2.2.1",
"ts-node": "^10.9.1",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{js,json,md,ts,tsx}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true,
"semi": true,
"tabWidth": 2,
"arrowParens": "avoid",
"trailingComma": "all",
"printWidth": 80
},
"dependencies": {
"@stacks/wallet-sdk": "^6.5.0",
"micro-stacks": "^1.2.1",
"node-gyp": "^9.3.1",
"redstone-api": "^0.4.11",
"ts-node-dev": "^2.0.0"
}
}