-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.12 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@ethanhann/mantine-dataview",
"version": "0.12.0",
"description": "A React library that renders server-driven, paginated datasets as a table or card grid, switchable at runtime, built on Mantine v9 and TanStack Table v8",
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./styles.css": "./dist/mantine-dataview.css",
"./url": {
"types": "./dist/url/index.d.ts",
"default": "./dist/url/index.js"
},
"./schedule": {
"types": "./dist/schedule/index.d.ts",
"default": "./dist/schedule/index.js"
},
"./testing": {
"types": "./dist/testing/index.d.ts",
"default": "./dist/testing/index.js"
}
},
"files": [
"dist"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "storybook dev -p 6006",
"build": "vite build",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"format": "biome format --write .",
"lint:package": "publint --strict",
"check:exports": "attw --pack . --profile esm-only --exclude-entrypoints styles.css",
"storybook:build": "storybook build",
"prepublishOnly": "npm run typecheck && npm run test:run && npm run build && npm run lint:package && npm run check:exports"
},
"peerDependencies": {
"@mantine/core": "^9.0.0",
"@mantine/dates": "^9.0.0",
"@mantine/hooks": "^9.0.0",
"@mantine/schedule": "^9.0.0",
"@tanstack/react-table": "^8.0.0",
"dayjs": "^1.11.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"peerDependenciesMeta": {
"@mantine/schedule": {
"optional": true
},
"dayjs": {
"optional": true
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.3",
"@axe-core/react": "^4.11.1",
"@biomejs/biome": "2.5.1",
"@mantine/code-highlight": "^9.4.1",
"@mantine/core": "^9.4.1",
"@mantine/dates": "^9.4.1",
"@mantine/hooks": "^9.4.1",
"@mantine/schedule": "^9.4.1",
"@storybook/addon-a11y": "^10.4.2",
"@storybook/addon-docs": "^10.4.2",
"@storybook/react-vite": "^10.4.2",
"@tabler/icons-react": "^3.41.1",
"@tanstack/react-table": "^8.21.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bun": "^1.3.11",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.2",
"dayjs": "^1.11.21",
"highlight.js": "^11.11.1",
"jsdom": "^29.0.1",
"postcss": "^8.5.8",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"publint": "^0.3.21",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"storybook": "^10.4.2",
"typescript": "^6.0.2",
"unplugin-dts": "^1.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.2",
"vitest-axe": "^0.1.0",
"vitest-canvas-mock": "^1.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethanhann/mantine-dataview.git"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"license": "MIT"
}