-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.01 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
{
"name": "react-compinators",
"description": "React component combinators",
"version": "1.0.55",
"type": "module",
"author": "Ran Eilam <ran@haag59.com> (https://middle-ages.github.io/)",
"homepage": "https://github.com/middle-ages/react-compinators",
"bugs": "https://github.com/middle-ages/react-compinators/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/middle-ages/react-compinators"
},
"license": "ISC",
"keywords": [
"react",
"effect",
"combinators",
"HOC",
"higher-order-component"
],
"scripts": {
"clean": "dev/clean",
"lint": "eslint --config config/eslint.config.ts",
"lint:fix": "lint --fix",
"typecheck": "tsc -b --noEmit",
"test": "vitest -c config/vitest.config.ts --reporter=verbose",
"test:run": "test --run",
"coverage": "test:run --coverage",
"circular": "depcruise src -c config/dependency-cruiser.cjs",
"dev": "vite -c config/vite.config.ts",
"storybook": "storybook dev -p 6006",
"build:code": "tsc -b",
"build:docs": "typedoc --options config/typedoc.json",
"build:storybook": "storybook build",
"build:all": "dev/build-all",
"build:clean": "dev/build-clean",
"publish:docs": "dev/publish-docs",
"npm": "dev/publish",
"ls:deps": "pnpm ls --prod",
"ls:deps:dev": "pnpm ls --dev"
},
"exports": "./index.js",
"dependencies": {
"@effect/typeclass": "^0.37.0",
"effect": "^3.18.1",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@fast-check/vitest": "^0.2.2",
"@storybook/addon-docs": "^9.1.10",
"@storybook/react-vite": "^9.1.10",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@tsconfig/node24": "^24.0.1",
"@tsconfig/strictest": "^2.0.6",
"@tsconfig/vite-react": "^7.0.1",
"@types/node": "^24.6.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"@vitejs/plugin-react-swc": "^4.1.0",
"@vitest/coverage-v8": "^3.2.4",
"dependency-cruiser": "^17.0.1",
"effect-ts-laws": "^1.3.19",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^6.1.0",
"eslint-plugin-react-refresh": "^0.4.23",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-unicorn": "^61.0.2",
"fast-check": "^4.3.0",
"globals": "^16.4.0",
"happy-dom": "^19.0.2",
"jiti": "^2.6.1",
"prettier": "^3.6.2",
"storybook": "^9.1.10",
"typedoc": "^0.28.13",
"typescript": "~5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "^7.1.8",
"vitest": "^3.2.4"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"arrowParens": "avoid",
"bracketSpacing": false,
"bracketSameLine": true,
"endOfLine": "lf"
},
"packageManager": "pnpm@9.2.0",
"engines": {
"node": ">=20.0.0"
}
}