-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.78 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
{
"name": "@fabiothefox/jsx-utils",
"version": "1.0.0",
"description": "SolidJS-inspired JSX control flow utilities for React ecosystems",
"license": "MIT",
"author": "FabioTheFox@Fabidev",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FabioGaming/jsx-utils.git"
},
"homepage": "https://github.com/FabioGaming/jsx-utils#readme",
"bugs": {
"url": "https://github.com/FabioGaming/jsx-utils/issues"
},
"keywords": [
"react",
"react-native",
"nextjs",
"tsx",
"jsx",
"solidjs",
"solid",
"control-flow",
"show",
"switch",
"match",
"for",
"typescript",
"utility"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/FabioGaming"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"test": "vitest",
"test:run": "vitest run",
"format:check": "prettier src/ --check",
"format:write": "prettier src/ --write"
},
"peerDependencies": {
"react": ">=17.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"jsdom": "^29.1.1",
"prettier": "^3.8.3",
"publint": "^0.3.21",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"packageManager": "npm@11.6.2"
}