-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 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
{
"name": "readable-hook",
"author": "tauseefk",
"version": "7.2.1",
"description": "React hooks for synchronizing state with ReadableStreams and AsyncIterables",
"keywords": [
"react",
"hook",
"react-hook",
"browser",
"readablestream",
"streaming"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tauseefk/readable-hook"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf ./dist",
"build": "rollup -c",
"examples": "vite serve ./examples",
"lint": "biome check src",
"lint:fix": "biome check --write src",
"lint:examples:fix": "biome check --write examples/src",
"build:examples": "tsc --project ./examples/tsconfig.json && vite build ./examples"
},
"files": ["dist"],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^20.2.3",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.0.0",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^5.0.1",
"rollup": "^3.22.1",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^5.8.3",
"vite": "^4.3.2"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}