-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.66 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.66 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
{
"name": "tarant-react-hook",
"version": "0.2.0",
"description": "React Hook for the actor model library Tarant",
"module": "dist/esm/bundle.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"lint": "biome check --apply ."
},
"peerDependencies": {
"react": ">=18.0.0",
"tarant": ">=4.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"react-tooltip": "^5.26.0",
"ts-results": "^3.3.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-transform-typescript": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@biomejs/biome": "1.5.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^20.11.7",
"@types/react": "^18.2.48",
"@types/uuid": "^9.0.1",
"rollup": "^4.9.2",
"tarant": "github:guillempuche/tarant#v4.0.0",
"typescript": "^5.3.1"
},
"contributors": [
"Guillem Puche (https://github.com/guillempuche)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/guillempuche/tarant-react.git"
},
"license": "MIT",
"homepage": "https://github.com/guillempuche/tarant-react#readme",
"bugs": {
"url": "https://github.com/guillempuche/tarant-react/issues"
},
"keywords": [
"react",
"actor model",
"actor system",
"actor",
"tarant",
"ddd",
"domain-driven design",
"event",
"messaging",
"state",
"state management"
],
"packageManager": "yarn@4.0.2"
}