-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.27 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.27 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
{
"name": "@sigi/react",
"version": "2.13.2",
"description": "React bindings for sigi framework",
"keywords": [
"Hooks",
"RxJS",
"TypeScript",
"React",
"Sigi"
],
"author": "LongYinan <lynweklm@gmail.com>",
"homepage": "https://sigi.how",
"license": "MIT",
"main": "dist/index.js",
"module": "esm/index.js",
"browser": "esm/index.browser.js",
"esnext": "next/index.browser.js",
"types": "esm/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"sideEffects": false,
"files": [
"dist",
"esm",
"next",
"es2015",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sigi-framework/sigi.git"
},
"bugs": {
"url": "https://github.com/sigi-framework/sigi/issues"
},
"dependencies": {
"@sigi/core": "workspace:*",
"@sigi/di": "workspace:*",
"@sigi/ssr": "workspace:*",
"@sigi/types": "workspace:*",
"tslib": "^2.8.1"
},
"peerDependencies": {
"react": ">=18",
"rxjs": ">=7",
"use-sync-external-store": ">=1"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/use-sync-external-store": "^1.5.0",
"use-sync-external-store": "^1.5.0"
}
}