@magicdoor/magic-use-case-react 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +99 -0
- package/LICENSE +202 -0
- package/README.md +33 -0
- package/dist/index.d-Dyx9E1u0.d.ts +124 -0
- package/dist/index.d.ts +54 -0
- package/dist/index.js +819 -0
- package/dist/server.d.ts +12 -0
- package/dist/server.js +1366 -0
- package/package.json +75 -0
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@magicdoor/magic-use-case-react",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "React bindings for magic-use-case — clean-architecture use cases and presenters for front-end TypeScript.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
"*": {
|
|
10
|
+
"server": [
|
|
11
|
+
"./dist/server.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"default": "./dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./server": {
|
|
21
|
+
"types": "./dist/server.d.ts",
|
|
22
|
+
"default": "./dist/server.js"
|
|
23
|
+
},
|
|
24
|
+
"./package.json": "./package.json"
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist",
|
|
28
|
+
"CHANGELOG.md"
|
|
29
|
+
],
|
|
30
|
+
"sideEffects": false,
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "tsup",
|
|
33
|
+
"type-check": "tsc --project typecheckconfig.json",
|
|
34
|
+
"check-package": "attw --pack . --ignore-rules cjs-resolves-to-esm && publint --strict",
|
|
35
|
+
"prepack": "npm run build"
|
|
36
|
+
},
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=18"
|
|
39
|
+
},
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"react": ">=17.0.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@magicdoor/magic-use-case-core": "*",
|
|
45
|
+
"@testing-library/react": "^16.3.3",
|
|
46
|
+
"@types/node": "^22.10.5",
|
|
47
|
+
"@types/react": "^19.0.10",
|
|
48
|
+
"@types/react-dom": "^19.2.7",
|
|
49
|
+
"react": "^19.0.0",
|
|
50
|
+
"react-dom": "^19.2.8",
|
|
51
|
+
"seroval": "^1.5.5"
|
|
52
|
+
},
|
|
53
|
+
"keywords": [
|
|
54
|
+
"react",
|
|
55
|
+
"use-case",
|
|
56
|
+
"clean-architecture",
|
|
57
|
+
"presenter",
|
|
58
|
+
"state-management"
|
|
59
|
+
],
|
|
60
|
+
"repository": {
|
|
61
|
+
"type": "git",
|
|
62
|
+
"url": "git+https://github.com/MagicDoorInc/magic-use-case.git",
|
|
63
|
+
"directory": "packages/react"
|
|
64
|
+
},
|
|
65
|
+
"homepage": "https://github.com/MagicDoorInc/magic-use-case#readme",
|
|
66
|
+
"bugs": {
|
|
67
|
+
"url": "https://github.com/MagicDoorInc/magic-use-case/issues"
|
|
68
|
+
},
|
|
69
|
+
"author": "Norbert Nemes",
|
|
70
|
+
"license": "Apache-2.0",
|
|
71
|
+
"publishConfig": {
|
|
72
|
+
"access": "public",
|
|
73
|
+
"provenance": true
|
|
74
|
+
}
|
|
75
|
+
}
|