-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.07 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
{
"name": "react-context-di",
"version": "1.0.1",
"description": "A lightweight React Context-based dependency injection container",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zavvdev/react-context-di.git"
},
"keywords": [
"react",
"dependency-injection",
"di",
"context"
],
"author": "ihor.zaviriukha@protonmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/zavvdev/react-context-di/issues"
},
"homepage": "https://github.com/zavvdev/react-context-di#readme",
"devDependencies": {
"@types/react": "^19.2.17",
"typescript": "^7.0.2"
},
"peerDependencies": {
"react": ">=18"
}
}