forked from secretkeylabs/sats-connect-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "@sats-connect/core",
"version": "0.3.1",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build-debug": "npm run clean && webpack --mode development",
"build": "npm run clean && tsup src/index.ts --format esm --dts",
"build:watch": "npm run clean && tsup src/index.ts --format esm --dts --watch",
"clean": "rimraf dist",
"lint": "prettier --write .",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"dependencies": {
"axios": "1.7.4",
"bitcoin-address-validation": "2.2.3",
"buffer": "6.0.3",
"jsontokens": "4.0.1",
"valibot": "0.33.2"
},
"devDependencies": {
"@types/jest": "^29.2.6",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "3.3.3",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"stream-browserify": "^3.0.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.1",
"tsup": "^8.0.2",
"typescript": "5.4.5",
"util": "^0.12.4",
"vm-browserify": "^1.1.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"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"
}