-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
93 lines (93 loc) · 2.21 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "wana",
"version": "0.14.1",
"description": "Easy observable state for React",
"author": "Alec Larson",
"license": "MIT",
"repository": "alloc/wana",
"main": "dist/wana.js",
"module": "dist/wana.mjs",
"types": "dist/wana.d.ts",
"files": [
"src",
"dist"
],
"exports": {
".": {
"import": "./dist/wana.mjs",
"default": "./dist/wana.js"
},
"./core": {
"import": "./dist/core.mjs",
"default": "./dist/core.js"
},
"./debug": {
"import": "./dist/debug.mjs",
"default": "./dist/debug.js"
},
"./shims": {
"import": "./dist/shims.mjs",
"default": "./dist/shims.js"
}
},
"scripts": {
"dev": "rollup -c -w",
"build": "tsc -p . --noEmit && rimraf dist && rollup -c",
"format": "sh scripts/format.sh",
"test": "jest",
"test:cov": "jest --coverage && codecov",
"release": "pnpm m exec sh $PWD/scripts/version.sh && sh scripts/release.sh"
},
"peerDependencies": {
"react": ">=16.9"
},
"dependencies": {
"@alloc/is": "^3.0.0",
"@alloc/is-dev": "^1.3.1",
"@alloc/queue-microtask": "^1.1.5",
"react-batched-updates": "^1.0.1",
"react-layout-effect": "^1.0.1",
"use-memo-one": "^1.1.1"
},
"devDependencies": {
"@alloc/fast-rimraf": "^1.0.8",
"@testing-library/react": "^8.0.5",
"@types/jest": "^24.0.15",
"@types/react": "~16.14.12",
"@types/react-dom": "~16.9.13",
"codecov": "^3.5.0",
"concurrently": "^4.1.1",
"esbuild": "^0.8.46",
"esbuild-jest": "npm:@alloc/esbuild-jest@^0.3.6",
"flush-microtasks": "^1.0.1",
"jest": "^27.2.1",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.1",
"react": "~16.9.0",
"react-dom": "~16.9.0",
"rollup": "^2.43.1",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-esbuild": "^3.0.2",
"standard-version": "^9.3.2",
"ts-jest": "^24.0.2",
"typescript": "^4.5.0-beta",
"typescript-snapshots-plugin": "^1.7.0",
"wana": "link:."
},
"keywords": [
"transparent",
"observable",
"proxy",
"reactive",
"data flow",
"state management",
"react-component",
"component",
"reactjs",
"react",
"hooks",
"hoc",
"tiny",
"mobx"
]
}