-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.42 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.42 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
{
"name": "@enterwell/react-mui-hooks",
"version": "0.10.0",
"type": "module",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"exports": {
".": "./dist/index.js",
"./api": "./dist/api.js",
"./package": "./dist/package.js"
},
"license": "MIT",
"scripts": {
"dev:js": "tsup index.ts --format esm --dts --watch",
"dev": "pnpm run \"/^dev:.*/\"",
"before-build:clean": "rimraf dist",
"build:js": "tsup index.ts --format esm --dts",
"after-build:api": "api-extractor run && node ./scripts/transform-api-docs.js",
"build": "pnpm run \"/^before-build:.*/\" && pnpm run \"/^build:.*/\" && pnpm run \"/^after-build:.*/\"",
"lint": "eslint ."
},
"devDependencies": {
"@enterwell/react-hooks": "workspace:*",
"@enterwell/react-ui": "workspace:*",
"@microsoft/api-extractor": "7.52.3",
"@mui/material": "7.0.2",
"@mui/x-data-grid-pro": "8.23.0",
"@types/node": "22.14.1",
"@types/react": "19.1.0",
"@types/react-dom": "19.1.2",
"date-fns": "4.1.0",
"eslint-config-custom": "workspace:*",
"react": "19.1.0",
"rimraf": "6.0.1",
"tsconfig": "workspace:*",
"tsup": "8.4.0",
"typescript": "5.8.3"
},
"peerDependencies": {
"@enterwell/react-hooks": "^0",
"@enterwell/react-ui": "^0",
"@mui/material": "^7",
"@mui/x-data-grid-pro": "^7 || ^8.0.0",
"react": "^19",
"react-dom": "^19"
}
}