forked from secretkeylabs/sats-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.39 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "sats-connect",
"version": "4.2.1",
"main": "dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "npm run clean && tsup src/index.ts --format esm --dts",
"build:watch": "npm run clean && tsup src/index.ts --format esm --dts --watch",
"dev:build": "tsup src/index.ts --format esm --dts --watch",
"dev:example": "cd example && npm run dev",
"clean": "rimraf dist",
"lint": "prettier --write .",
"prepare": "husky install || true"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"dependencies": {
"@sats-connect/core": "0.16.0",
"@sats-connect/make-default-provider-config": "0.0.10",
"@sats-connect/ui": "0.0.7",
"valibot": "1.2.0"
},
"devDependencies": {
"husky": "9.1.7",
"lint-staged": "16.1.5",
"prettier": "3.6.2",
"prettier-plugin-organize-imports": "4.2.0",
"rimraf": "6.0.1",
"ts-jest": "29.4.1",
"tsup": "8.5.0",
"typescript": "5.9.2",
"vite-plugin-node-polyfills": "0.24.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/secretkeylabs/sats-connect.git"
},
"author": "Secret Key Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/secretkeylabs/sats-connect/issues"
},
"homepage": "https://github.com/secretkeylabs/sats-connect#readme"
}