-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.6 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
{
"name": "@monerium/sdk-react-provider",
"version": "1.3.11",
"private": false,
"description": "[DEPRECATED] React provider for the Monerium SDK.",
"deprecated": "This package is deprecated. @monerium/sdk v4 removes client-side auth state in favor of server-side management. Please see the apps/customer demo in the monorepo for migration examples.",
"repository": {
"type": "git",
"url": "git+https://github.com/monerium/js-monorepo.git",
"directory": "packages/sdk-react-provider"
},
"bugs": {
"url": "https://github.com/monerium/js-monorepo/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist/index.js",
"dist/index.mjs",
"dist/index.d.ts",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typedoc": "typedoc",
"lint": "eslint . --fix",
"pub:pre": "pnpm publish --no-git-checks --dry-run",
"test": "jest",
"test:watch": "jest --watch",
"type-map": "tsc --emitDeclarationOnly --declaration",
"clean": "rm -rf dist node_modules .turbo"
},
"dependencies": {
"@monerium/sdk": "3.5.0"
},
"peerDependencies": {
"@tanstack/react-query": "5.90.21",
"@types/react": "18.3.28",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"undici": "7.22.0"
}
}