@laravel/stream-react 0.3.5 → 0.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +66 -66
package/package.json
CHANGED
|
@@ -1,68 +1,68 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "@laravel/stream-react",
|
|
3
|
+
"version": "0.3.6",
|
|
4
|
+
"description": "Laravel streaming hooks for React",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"laravel",
|
|
7
|
+
"stream",
|
|
8
|
+
"use-stream",
|
|
9
|
+
"server-sent-events",
|
|
10
|
+
"sse",
|
|
11
|
+
"react",
|
|
12
|
+
"hooks"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://github.com/laravel/stream/tree/main/packages/react#readme",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/laravel/stream.git"
|
|
18
|
+
},
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/laravel/stream/issues"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"author": {
|
|
24
|
+
"name": "Taylor Otwell"
|
|
25
|
+
},
|
|
26
|
+
"type": "module",
|
|
27
|
+
"main": "dist/index.umd.js",
|
|
28
|
+
"module": "dist/index.es.js",
|
|
29
|
+
"types": "dist/index.d.ts",
|
|
30
|
+
"exports": {
|
|
31
|
+
".": {
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"import": "./dist/index.es.js",
|
|
34
|
+
"require": "./dist/index.umd.js"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"dist"
|
|
39
|
+
],
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "vite build",
|
|
42
|
+
"lint": "eslint --config eslint.config.mjs \"src/**/*.ts\"",
|
|
43
|
+
"prepublish": "pnpm run build",
|
|
44
|
+
"release": "vitest --run && npm publish",
|
|
45
|
+
"test": "vitest",
|
|
46
|
+
"format": "prettier --write ."
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@testing-library/dom": "^10.4.0",
|
|
50
|
+
"@testing-library/react": "^16.3.0",
|
|
51
|
+
"@types/node": "^22.14.0",
|
|
52
|
+
"@types/react": "^19.1.0",
|
|
53
|
+
"@typescript-eslint/eslint-plugin": "^8.21.0",
|
|
54
|
+
"@typescript-eslint/parser": "^8.21.0",
|
|
55
|
+
"@vitejs/plugin-vue": "^5.0.0",
|
|
56
|
+
"eslint": "^9.0.0",
|
|
57
|
+
"jsdom": "^26.0.0",
|
|
58
|
+
"msw": "^2.8.2",
|
|
59
|
+
"prettier": "^3.5.3",
|
|
60
|
+
"typescript": "^5.3.0",
|
|
61
|
+
"vite": "^5.1.0",
|
|
62
|
+
"vite-plugin-dts": "^4.5.3",
|
|
63
|
+
"vitest": "^3.1.1"
|
|
64
|
+
},
|
|
65
|
+
"peerDependencies": {
|
|
66
|
+
"react": "^18.0.0 || ^19.0.0"
|
|
35
67
|
}
|
|
36
|
-
|
|
37
|
-
"files": [
|
|
38
|
-
"dist"
|
|
39
|
-
],
|
|
40
|
-
"devDependencies": {
|
|
41
|
-
"@testing-library/dom": "^10.4.0",
|
|
42
|
-
"@testing-library/react": "^16.3.0",
|
|
43
|
-
"@types/node": "^22.14.0",
|
|
44
|
-
"@types/react": "^19.1.0",
|
|
45
|
-
"@typescript-eslint/eslint-plugin": "^8.21.0",
|
|
46
|
-
"@typescript-eslint/parser": "^8.21.0",
|
|
47
|
-
"@vitejs/plugin-vue": "^5.0.0",
|
|
48
|
-
"eslint": "^9.0.0",
|
|
49
|
-
"jsdom": "^26.0.0",
|
|
50
|
-
"msw": "^2.8.2",
|
|
51
|
-
"prettier": "^3.5.3",
|
|
52
|
-
"typescript": "^5.3.0",
|
|
53
|
-
"vite": "^5.1.0",
|
|
54
|
-
"vite-plugin-dts": "^4.5.3",
|
|
55
|
-
"vitest": "^3.1.1"
|
|
56
|
-
},
|
|
57
|
-
"peerDependencies": {
|
|
58
|
-
"react": "^18.0.0 || ^19.0.0"
|
|
59
|
-
},
|
|
60
|
-
"scripts": {
|
|
61
|
-
"build": "vite build",
|
|
62
|
-
"lint": "eslint --config eslint.config.mjs \"src/**/*.ts\"",
|
|
63
|
-
"prepublish": "pnpm run build",
|
|
64
|
-
"release": "vitest --run && git push --follow-tags && pnpm publish",
|
|
65
|
-
"test": "vitest",
|
|
66
|
-
"format": "prettier --write ."
|
|
67
|
-
}
|
|
68
|
-
}
|
|
68
|
+
}
|