-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.61 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.61 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@ln-markets/sdk",
"version": "1.2.5",
"description": "TypeScript SDK for LNMarkets API",
"keywords": [
"api",
"bitcoin",
"lightning",
"ln-markets",
"sdk",
"trading"
],
"homepage": "https://github.com/ln-markets/sdk-typescript#readme",
"bugs": {
"url": "https://github.com/ln-markets/sdk-typescript/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ln-markets/sdk-typescript.git"
},
"files": [
"dist",
"src",
"LICENSE",
"README.md",
"package.json"
],
"type": "module",
"exports": {
"./v3": {
"import": "./dist/v3/index.js",
"types": "./dist/v3/index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsgo --build tsconfig.build.json",
"format": "oxfmt",
"lint": "oxlint --type-aware",
"prepublishOnly": "./scripts/pre-release.sh",
"spell-check": "cspell --show-context --no-progress '**'",
"test": "vitest --run",
"type-check": "tsgo --noEmit",
"release": "np"
},
"dependencies": {
"ky": "1.14.3",
"ts-pattern": "5.9.0"
},
"devDependencies": {
"@types/node": "24.12.1",
"@typescript/native-preview": "7.0.0-dev.20260403.1",
"cspell": "9.7.0",
"knip": "6.3.0",
"markdownlint-cli": "0.48.0",
"np": "11.0.2",
"oxfmt": "0.43.0",
"oxlint": "1.58.0",
"oxlint-tsgolint": "0.17.4",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vite": "8.0.3",
"vitest": "4.1.2"
},
"engines": {
"node": "24.13.0",
"pnpm": "10.32.1"
},
"packageManager": "pnpm@10.32.1"
}