-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.21 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.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
{
"name": "@d-buckner/ensemble-react",
"version": "0.2.0",
"description": "React bindings for Ensemble actor model framework",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/d-buckner/ensemble.git",
"directory": "packages/react"
},
"keywords": [
"react",
"actor",
"state-management",
"hooks",
"typescript",
"reactive"
],
"author": "Daniel Buckner",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": "^18.0.0"
},
"dependencies": {
"@d-buckner/ensemble-core": "^0.2.0"
},
"devDependencies": {
"@testing-library/react": "^15.0.7",
"@types/react": "^18.3.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^6.1.1",
"jsdom": "^27.0.0",
"react": "^18.3.1",
"typescript": "~5.9.3",
"vitest": "^3.2.4"
}
}