-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "readable-hook",
"author": "tauseefk",
"version": "6.1.0",
"description": "React hook for ReadableStream",
"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",
"build:examples": "tsc --project ./examples/tsconfig.json && vite build ./examples",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"files": [
"dist"
],
"devDependencies": {
"@types/node": "^20.2.3",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.0",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^3.22.1",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^5.0.4",
"vite": "^4.3.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}