This repository has been archived by the owner on Mar 3, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.13 KB
/
package.json
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
{
"name": "@encode42/mantine-extras",
"description": "Extra components and functionality for Mantine UI.",
"version": "5.0.3",
"author": {
"name": "Encode42",
"email": "[email protected]",
"url": "https://encode42.dev"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Encode42"
},
"repository": {
"type": "git",
"url": "https://github.com/Encode42/mantine-extras.git"
},
"license": "MIT",
"sideEffects": false,
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "del ./lib/** && del ./cjs/** && del ./esm/**",
"build": "pnpm run build:base && pnpm run build:bundle",
"build:base": "tsc --build --force",
"build:bundle": "rollup -c rollup.config.mjs",
"build:publish": "pnpm run clean && pnpm run build && pnpm publish",
"docs": "pnpm exec typedoc"
},
"files": [
"lib",
"cjs",
"esm",
"changelog.md"
],
"peerDependencies": {
"@mantine/core": "^5.8",
"@mantine/hooks": "^5.8",
"@mantine/notifications": "^5.8",
"@mantine/prism": "^5.8",
"@tabler/icons": "^1 >=1.28",
"react": ">=17",
"react-dom": ">=17"
},
"dependencies": {
"@encode42/node-extras": "^1",
"@mdx-js/react": "^2",
"deepmerge": "^4",
"file-saver": "^2",
"react-player": "^2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.3",
"@rollup/plugin-json": "^5.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/react": "^18.0.25",
"del-cli": "^5.0.0",
"esbuild": "^0.15.16",
"eslint": "^8.28.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-sonarjs": "^0.16.0",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unicorn": "^45.0.0",
"rollup": "^3.5.0",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-node-externals": "^5.0.2",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
}
}