-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.86 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.86 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@mobily/wonka-hooks",
"version": "1.1.8",
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"*.md",
"index.js.flow",
"package.json"
],
"scripts": {
"build": "pnpm foy -c ./scripts/build.foyfile.ts",
"clean": "rm -rf ./dist",
"test": "pnpm vitest run --coverage",
"generate": "pnpm foy -c ./scripts/generate.foyfile.ts"
},
"keywords": [
"wonka",
"typescript",
"observable",
"iterable",
"stream",
"react",
"hooks"
],
"author": "Marcin Dziewulski <hello@mobily.pl>",
"homepage": "https://github.com/mobily/wonka-hooks",
"bugs": "https://github.com/mobily/wonka-hooks/issues",
"repository": {
"type": "git",
"url": "https://github.com/mobily/wonka-hooks.git"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@mobily/wonka-extras": ">=1.0.4",
"react": ">=16.8.0",
"wonka": ">=6.1.2"
},
"devDependencies": {
"@mobily/wonka-extras": "^1.0.3",
"@testing-library/react-hooks": "^8.0.1",
"@types/node": "^18.7.23",
"@types/react": "^18.0.21",
"@vitest/coverage-c8": "^0.23.4",
"esbuild": "^0.15.10",
"flowgen": "^1.20.1",
"foy": "^0.2.17",
"globby": "^11.0.2",
"import-sort-style": "^6.0.0",
"import-sort-style-mobily": "^0.2.0",
"prettier": "^2.7.1",
"prettier-plugin-import-sort": "^0.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"vitest": "^0.23.4",
"wonka": ">=6.1.0"
}
}