-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.44 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
{
"name": "@sats-connect/core",
"version": "0.5.0",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "tsup",
"build:watch": "tsup --watch",
"check-types": "tsc --noEmit",
"check-format": "prettier --check .",
"format": "prettier --write .",
"ci": "npm run check-types && npm run check-format && npm run build",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"dependencies": {
"axios": "1.7.7",
"bitcoin-address-validation": "2.2.3",
"buffer": "6.0.3",
"jsontokens": "4.0.1",
"valibot": "0.42.1"
},
"devDependencies": {
"@types/jest": "29.5.14",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"prettier": "3.3.3",
"process": "0.11.10",
"rimraf": "3.0.2",
"stream-browserify": "3.0.0",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"tsup": "8.3.0",
"typescript": "5.4.5",
"util": "0.12.5",
"vm-browserify": "1.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/secretkeylabs/sats-connect-core.git"
},
"author": "Secret Key Labs",
"license": "ISC",
"bugs": {
"url": "https://github.com/secretkeylabs/sats-connect-core/issues"
},
"homepage": "https://github.com/secretkeylabs/sats-connect-core#readme"
}