-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.82 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"version": "0.4.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"license": "MIT",
"keywords": [
"pridepack",
"react",
"use-mutable-source",
"use-subscription",
"subscription",
"observer",
"subject"
],
"name": "react-external-subject",
"module": "dist/react-external-subject.esm.js",
"exports": {
"require": "./dist/index.js",
"imports": "./dist/react-external-subject.esm.js"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/react-hooks": "^3.7.0",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"@types/react": "^17.0.0",
"eslint": "^7.16.0",
"eslint-config-lxsmnsyc": "^0.1.20",
"pridepack": "^0.6.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"ts-jest": "^26.4.4",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0"
},
"scripts": {
"prepublish": "pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"lint": "pridepack lint",
"test": "pridepack test --passWithNoTests",
"clean": "pridepack clean",
"watch": "pridepack watch"
},
"dependencies": {
"@lyonph/react-hooks": "^0.2.2"
},
"description": "Wrap mutable sources into React-safe mutable source",
"repository": "https://github.com/lxsmnsyc/react-external-subject.git",
"homepage": "https://github.com/lxsmnsyc/react-external-subject",
"bugs": {
"url": "https://github.com/lxsmnsyc/react-external-subject/issues"
},
"author": "Alexis Munsayac <[email protected]>",
"private": false,
"publishConfig": {
"access": "public"
}
}