-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "sats-connect",
"version": "3.0.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.4.1",
"@sats-connect/make-default-provider-config": "0.0.10",
"@sats-connect/ui": "0.0.7"
},
"devDependencies": {
"husky": "8.0.3",
"lint-staged": "13.2.3",
"prettier": "2.8.4",
"prettier-plugin-organize-imports": "4.0.0",
"rimraf": "3.0.2",
"ts-jest": "29.0.5",
"tsup": "8.0.2",
"typescript": "5.4.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/secretkeylabs/sats-connect.git"
},
"author": "Secret Key Labs",
"license": "ISC",
"bugs": {
"url": "https://github.com/secretkeylabs/sats-connect/issues"
},
"homepage": "https://github.com/secretkeylabs/sats-connect#readme"
}