-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.07 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.07 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
{
"name": "mui-rff",
"version": "10.0.0",
"license": "MIT",
"description": "Set of modern wrapper components to facilitate using Material UI with React Final Form",
"repository": {
"url": "git+https://github.com/lookfirst/mui-rff.git",
"type": "git"
},
"homepage": "https://lookfirst.github.io/mui-rff",
"keywords": [
"react",
"material-ui",
"final-form",
"react-final-form",
"yup"
],
"author": "Jon Stevens",
"main": "dist/mui-rff.cjs.js",
"module": "dist/mui-rff.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"workspaces": [
"example"
],
"scripts": {
"start": "vite build --watch",
"build": "vite build",
"test": "vitest run",
"testw": "vitest --watch",
"lint": "biome lint",
"tsc": "tsc --noEmit",
"lint-fix": "biome lint --fix",
"ci": "bun run lint && bun run tsc && bun run test && CI=true bun run build && bun run build-example",
"gh-pages": "gh-pages -d example/dist",
"build-example": "cd example && bun run build",
"check": "ultracite check",
"fix": "ultracite fix"
},
"sideEffects": false,
"peerDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/material": "^9.0.0",
"@mui/system": "^9.0.0",
"@mui/x-date-pickers": "^9.0.0",
"final-form": "^5.0.0",
"react": "^19.2.4",
"react-final-form": "^7.0.0"
},
"optionalDependencies": {
"@date-io/core": "^3.2.0",
"@date-io/date-fns": "^3.2.1",
"date-fns": "^4.1.0",
"yup": "^1.7.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.1",
"gh-pages": "6.3.0",
"jsdom": "29.0.2",
"react": "19.2.5",
"react-dom": "19.2.5",
"tslib": "2.8.1",
"typescript": "6.0.2",
"ultracite": "7.5.6",
"vite": "8.0.8",
"vite-plugin-dts": "4.5.4",
"vitest": "4.1.4"
},
"type": "module"
}