-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.33 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
{
"name": "@universal-di/react",
"version": "1.0.5",
"description": "Universal Dependency Injection port for React",
"scripts": {
"build": "rimraf ./dist && tsc -p tsconfig.lib.json",
"test": "vitest",
"test:ci": "vitest run"
},
"author": "Szymon Gracki <dev.sgracki@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/universal-di/react.git"
},
"homepage": "https://github.com/universal-di/react",
"devDependencies": {
"@swc/core": "^1.3.101",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.15.21",
"@types/react": "^19.1.5",
"jsdom": "^26.1.0",
"react-dom": "^19.1.0",
"rimraf": "^6.0.1",
"rollup-plugin-swc": "^0.2.1",
"typescript": "5.3.3",
"vitest": "^3.1.4"
},
"dependencies": {
"@universal-di/core": "^1.0.3",
"react": "^19.1.0"
},
"bugs": {
"url": "https://github.com/universal-di/react/issues"
},
"main": "./dist/src/index.js",
"module": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"keywords": [
"universal",
"dependency",
"injection",
"solid",
"react",
"di"
]
}