-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.35 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@joinmarket-webui/joinmarket-ng-api-ts",
"version": "1.1.0",
"description": "OpenAPI TypeScript types and client for JoinMarket-NG",
"license": "MIT",
"author": "JoinMarket WebUI Org.",
"type": "module",
"keywords": [
"joinmarket",
"bitcoin",
"rpc",
"api",
"client"
],
"engines": {
"node": ">=26.7.0",
"npm": ">=11.19.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./jm": {
"import": "./dist/generated/client/index.js",
"types": "./dist/generated/client/index.d.ts"
},
"./core": {
"import": "./dist/generated/client/core/index.js",
"types": "./dist/generated/client/core/index.d.ts"
},
"./client": {
"import": "./dist/generated/client/client/index.js",
"types": "./dist/generated/client/client/index.d.ts"
},
"./@tanstack/react-query": {
"import": "./dist/generated/client/@tanstack/react-query.gen.js",
"types": "./dist/generated/client/@tanstack/react-query.gen.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"test": "npm run test:ts",
"test:ts": "tsc --noEmit",
"build": "tsdown",
"openapi-ts:fetch-schema": "node ./scripts/fetch-schema.mjs",
"openapi-ts": "openapi-ts",
"example": "npx tsx ./example.ts",
"publish:npm": "npm publish --ignore-scripts --access public --@joinmarket-webui:registry=https://registry.npmjs.org",
"publish:ghr": "npm publish --ignore-scripts --access public --@joinmarket-webui:registry=https://npm.pkg.github.com"
},
"homepage": "https://github.com/joinmarket-webui/joinmarket-ng-api-ts",
"repository": {
"type": "git",
"url": "git+https://github.com/joinmarket-webui/joinmarket-ng-api-ts.git"
},
"bugs": {
"url": "https://github.com/joinmarket-webui/joinmarket-ng-api-ts/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@hey-api/openapi-ts": "0.99.0",
"@tanstack/react-query": "5.102.2",
"@types/node": "26.2.0",
"@types/react": "19.2.18",
"js-yaml": "5.3.0",
"tsdown": "0.22.14",
"typescript": "5.9.3"
},
"peerDependencies": {
"@tanstack/react-query": "$@tanstack/react-query"
},
"peerDependenciesMeta": {
"@tanstack/react-query": {
"optional": true
}
}
}