-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.74 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.74 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
70
71
72
{
"name": "braided-react",
"version": "0.1.2",
"type": "module",
"description": "React integration for Braided - Bridge your stateful systems to React without giving up lifecycle control. React observes, doesn't own. Minimal, type-safe dependency injection for React.",
"main": "./dist/index.cjs",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "zshy",
"prepublishOnly": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RegiByte/braided-react.git"
},
"bugs": {
"url": "https://github.com/RegiByte/braided-react/issues"
},
"keywords": [
"react",
"braided",
"dependency-injection",
"lifecycle",
"resource-management",
"system-composition",
"integrant",
"stateful",
"hooks",
"context",
"testing",
"declarative"
],
"homepage": "https://github.com/RegiByte/braided-react#readme",
"author": "RegiByte",
"license": "ISC",
"peerDependencies": {
"braided": ">=0.2.1",
"react": ">=18.0.0"
},
"devDependencies": {
"@testing-library/react": "^16.1.0",
"@types/node": "^24.10.1",
"@types/react": "^18.3.18",
"@vitest/coverage-v8": "^4.0.14",
"jsdom": "^25.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^6.0.0",
"typescript": "^5.9.3",
"vitest": "^4.0.14",
"zshy": "^0.6.0"
},
"zshy": {
"exports": {
".": "src/index.tsx"
}
},
"files": [
"dist"
],
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"exports": {
".": {
"types": "./dist/index.d.cts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
}
}