-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.54 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-declarative-mantine",
"version": "0.0.44",
"description": "The Mantine ui kit bindings for react-declarative",
"private": false,
"author": {
"name": "Petr Tripolsky",
"email": "[email protected]",
"url": "https://github.com/tripolskypetr"
},
"funding": {
"type": "individual",
"url": "http://paypal.me/tripolskypetr"
},
"license": "MIT",
"homepage": "https://react-declarative-mantine.github.io",
"keywords": [
"mantine",
"mui",
"react-declarative",
"ui kit",
"bindings",
"react",
"declarative"
],
"repository": {
"type": "git",
"url": "https://github.com/react-declarative/react-declarative-mantine",
"documentation": "https://github.com/react-declarative/react-declarative-mantine/tree/master/docs"
},
"bugs": {
"url": "https://github.com/react-declarative/react-declarative-mantine/issues"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"default": "./dist/index.esm.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"start": "npm run build && cd demo && npm install && npm start",
"build": "rimraf dist && rollup -c && npm run typedef",
"build:docker": "docker-compose up",
"typedef": "node ./scripts/dts.js",
"postinstall": "node ./scripts/postinstall.js",
"lint": "eslint --fix --ext .ts,.tsx --ignore-pattern .d.ts ./src"
},
"files": [
"dist",
"scripts",
"README.md"
],
"peerDependencies": {
"@mantine/core": "*",
"@mantine/dates": "*",
"@mui/icons-material": "*",
"@mui/material": "*",
"@mui/system": "*",
"react": "*",
"react-declarative": "*",
"react-dom": "*"
},
"devDependencies": {
"@mantine/core": "7.12.2",
"@mantine/dates": "7.12.2",
"@rollup/plugin-typescript": "11.1.6",
"@types/react": "18.0.21",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"dts-bundle": "0.7.3",
"dts-minify": "0.3.0",
"eslint": "8.57.0",
"eslint-plugin-jsdoc": "48.2.1",
"glob": "11.0.0",
"million": "3.1.11",
"prettier": "3.2.5",
"react": "^18.0.0",
"react-declarative": "^2.6.195",
"react-dom": "^18.0.0",
"rollup": "2.79.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-terser": "7.0.2",
"typescript": "5.5.4"
},
"dependencies": {
"rimraf": "3.0.2"
}
}