-
-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.13 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
{
"type": "module",
"name": "@material-table/core",
"publishConfig": {
"access": "public"
},
"url": "https://material-table-core.github.io/",
"version": "8.0.3",
"description": "Datatable for React based on https://material-ui.com/api/table/ with additional features",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "types/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"types"
],
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"start": "vite serve __tests__/demo --config vite.config.js --open",
"build": "vite build",
"lint": "npm run eslint && npm run tsc",
"eslint": "eslint src __tests__",
"lint:fix": "eslint src __tests__ --fix",
"tsc": "tsc --noEmit --lib es2022,dom --skipLibCheck types/index.d.ts",
"prettify": "prettier --write \"{src,__tests__,types}/**/*.{js,jsx,d.ts}\"",
"pretest": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:build": "vitest run __tests__/post.build.test.js",
"prerelease:major": "npm run test",
"prerelease:minor": "npm run test",
"prerelease:patch": "npm run test",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor -m 'Release v%s' && npm run git:push:tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch -m 'Release v%s' && npm run git:push:tags",
"git:push:tags": "git push origin && git push origin --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/material-table-core/core.git"
},
"keywords": [
"react",
"material-ui",
"material",
"mui",
"datatable",
"table"
],
"author": "Mehmet Baran, @material-table/core contributors",
"license": "MIT",
"bugs": {
"url": "https://material-table-core.github.io/"
},
"homepage": "https://material-table-core.github.io/",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9.39.0",
"eslint-plugin-react": "^7.37.5",
"generate-changelog": "^1.8.0",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"prettier": "^3.9.5",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"typescript": "^7.0.2",
"vite": "^8.1.5",
"vitest": "^4.1.10"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@hello-pangea/dnd": "^18.0.1",
"@mui/icons-material": "^9.2.0",
"@mui/material": "^9.2.0",
"@mui/x-date-pickers": "^9.10.0",
"date-fns": "^4.4.0",
"debounce": "^3.0.0",
"deep-eql": "^5.0.2",
"deepmerge": "^4.3.1",
"prop-types": "^15.8.1",
"uuid": "^14.0.1",
"zustand": "^5.0.14"
},
"peerDependencies": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
}
}