-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.58 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
{
"name": "react-app-registry",
"version": "0.1.3",
"description": "Tiny registry/context to dynamically register and resolve React components (and other items) by key.",
"keywords": [
"react",
"registry",
"provider",
"context",
"plugin",
"blocks",
"dynamic",
"inversion-of-control"
],
"license": "MIT",
"author": "Alireza Tabatabaeian",
"repository": {
"type": "git",
"url": "https://github.com/Alireza-Tabatabaeian/react-app-registry"
},
"homepage": "https://github.com/Alireza-Tabatabaeian/react-app-registry#readme",
"type": "module",
"main": "./dist/client.mjs",
"module": "./dist/client.mjs",
"types": "./dist/client.d.mts",
"exports": {
".": {
"import": "./dist/client.mjs",
"types": "./dist/client.d.mts",
"default": "./dist/client.mjs"
},
"./server": {
"import": "./dist/server.mjs",
"types": "./dist/server.d.mts",
"default": "./dist/server.mjs"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"test": "vitest",
"build": "ts-build-wizard",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@testing-library/react": "^16.3.0",
"@types/node": "^24.4.0",
"@types/react": "^19.1.13",
"jsdom": "^27.0.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"ts-build-wizard": "^1.0.5",
"tsdown": "^0.15.0",
"typescript": "^5.5.3",
"vitest": "^3.2.4"
}
}