-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.21 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.21 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
76
77
78
{
"name": "react-async-iterators",
"version": "0.10.2",
"author": "Dor Shtaif <dorshtaif@gmail.com>",
"license": "MIT",
"description": "The magic of JavaScript async iterators in React ⛓️ 🧬 🔃",
"keywords": [
"reactjs",
"react",
"react-hooks",
"iterator",
"iterable",
"async-generator",
"async-iterable",
"async-iterator",
"async-iterable-utility",
"async-iterator-hooks",
"async-iterator-component",
"for-await-of",
"async-await",
"lazy",
"disposable",
"typescript",
"javascript"
],
"homepage": "https://github.com/shtaif/react-async-iterators",
"bugs": "https://github.com/shtaif/react-async-iterators/issues",
"repository": "github:shtaif/react-async-iterators",
"type": "module",
"packageManager": "pnpm@9.15.0",
"sideEffects": false,
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"test": "vitest --run --config ./spec/vitest.config.ts",
"test:dev": "vitest --watch --config ./spec/vitest.config.ts",
"test-typings-check": "tsc --noEmit -p ./spec/tsconfig.json",
"build": "rm -rf ./dist && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && tsx ./scripts/set-module-type-in-dist-builds.ts",
"build-check": "tsc --noEmit -p ./tsconfig.json",
"prepack": "pnpm run build"
},
"peerDependencies": {
"react": ">=17"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.2",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react-swc": "^3.6.0",
"@vitest/ui": "^2.1.8",
"colorette": "^2.0.20",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.13.0",
"jsdom": "^25.0.1",
"lodash-es": "^4.17.21",
"prettier": "^3.4.2",
"tsx": "^4.19.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vitest": "~3.0.5"
}
}