-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.49 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@illuma/react-experimental",
"version": "0.4.0",
"description": "Experimental React adapter library for Illuma's dependency injection. Provides basic signal-based state management and components for DI interop.",
"author": "bebrasmell",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/git-illuma/react"
},
"keywords": [
"react",
"dependency injection",
"di",
"ioc",
"signals",
"typescript"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./signals": {
"import": {
"types": "./dist/signals.d.ts",
"default": "./dist/signals.js"
},
"require": {
"types": "./dist/signals.d.cts",
"default": "./dist/signals.cjs"
}
},
"./testkit": {
"import": {
"types": "./dist/testkit.d.ts",
"default": "./dist/testkit.js"
},
"require": {
"types": "./dist/testkit.d.cts",
"default": "./dist/testkit.cjs"
}
}
},
"typesVersions": {
"*": {
"signals": [
"./dist/signals.d.ts"
],
"testkit": [
"./dist/testkit.d.ts"
]
}
},
"files": [
"dist",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run",
"test:badges": "vitest run --coverage && make-coverage-badge --report-path ./artifacts/coverage/coverage-summary.json --output-path ./badges/coverage.svg",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"react": ">=18",
"@illuma/core": ">=2.5.0",
"@illuma/signals": ">=0.0.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.15",
"@illuma/core": "^2.5.0",
"@illuma/signals": "^0.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bun": "latest",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.0.18",
"make-coverage-badge": "1.2.0",
"happy-dom": "^20.6.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}