-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 KB
/
package.json
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
{
"name": "@universal-di/react",
"version": "0.0.4",
"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 <[email protected]>",
"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": "^14.1.2",
"@types/node": "^8.0.31",
"jsdom": "^23.0.1",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"rollup-plugin-swc": "^0.2.1",
"typescript": "5.3.3",
"vitest": "^1.1.0"
},
"dependencies": {
"@universal-di/core": "^0.0.7",
"react": "^18.2.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"
]
}