@mcurros2/microm 1.1.1-0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,96 @@
1
+ {
2
+ "name": "@mcurros2/microm",
3
+ "version": "1.1.1-0",
4
+ "source": "src/index.ts",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "license": "MIT",
11
+ "author": "Mariano Curros",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/mcurros2/MicroMFramework.git"
15
+ },
16
+ "description": "MicroM – Lightweight frontend framework for SQL-centric apps built with React and Mantine.",
17
+ "keywords": [
18
+ "microm",
19
+ "react",
20
+ "mantine",
21
+ "framework",
22
+ "sql",
23
+ "frontend",
24
+ "typescript",
25
+ "ui"
26
+ ],
27
+ "files": [
28
+ "dist",
29
+ "README.md",
30
+ "LICENSE"
31
+ ],
32
+ "scripts": {
33
+ "lint": "eslint src --ext .js,.ts,.tsx",
34
+ "start": "(if exist dist rd /s /q dist) & (if exist .parcel-cache rd /s /q .parcel-cache) & parcel test/index.html --cert ../SSL/localhost.crt --key ../SSL/localhost.key --no-cache",
35
+ "build": "(if exist dist rd /s /q dist) & (if exist .parcel-cache rd /s /q .parcel-cache) & parcel build --no-cache src/index.ts",
36
+ "publish:patch": "npm version patch -m \"Upgrade to %s\" && npm publish",
37
+ "publish:alpha": "npm version prepatch -m \"Upgrade to %s\" && npm publish --tag alpha"
38
+ },
39
+ "peerDependencies": {
40
+ "@emotion/react": "^11.11.1",
41
+ "@googlemaps/js-api-loader": "^1.16.2",
42
+ "@googlemaps/markerclusterer": "^2.5.3",
43
+ "@mantine/core": "6.0.22",
44
+ "@mantine/dates": "^6.0.22",
45
+ "@mantine/dropzone": "^6.0.22",
46
+ "@mantine/form": "^6.0.22",
47
+ "@mantine/hooks": "^6.0.22",
48
+ "@mantine/modals": "^6.0.22",
49
+ "@mantine/prism": "^6.0.22",
50
+ "@mantine/spotlight": "^6.0.22",
51
+ "@tabler/icons-react": "^3.31.0",
52
+ "@types/google.maps": "^3.54.3",
53
+ "@types/supercluster": "^7.1.3",
54
+ "dayjs": "^1.11.9",
55
+ "mime": "^3.0.0",
56
+ "react": "^18.2.0",
57
+ "react-advanced-cropper": "^0.19.6",
58
+ "react-dom": "^18.2.0"
59
+ },
60
+ "devDependencies": {
61
+ "@emotion/react": "^11.11.1",
62
+ "@mantine/core": "^6.0.22",
63
+ "@mantine/dates": "^6.0.22",
64
+ "@mantine/dropzone": "^6.0.22",
65
+ "@mantine/form": "^6.0.22",
66
+ "@mantine/hooks": "^6.0.22",
67
+ "@mantine/modals": "^6.0.22",
68
+ "@mantine/prism": "^6.0.22",
69
+ "@parcel/packager-ts": "^2.12.0",
70
+ "@parcel/reporter-bundle-analyzer": "^2.12.0",
71
+ "@parcel/transformer-sass": "^2.12.0",
72
+ "@parcel/transformer-typescript-tsc": "^2.12.0",
73
+ "@parcel/transformer-typescript-types": "^2.12.0",
74
+ "@tabler/icons-react": "^3.31.0",
75
+ "@types/google.maps": "^3.54.3",
76
+ "@types/mime": "^3.0.3",
77
+ "@types/react": "^18.2.18",
78
+ "@types/react-dom": "^18.2.7",
79
+ "@typescript-eslint/eslint-plugin": "^6.2.1",
80
+ "@typescript-eslint/parser": "^6.2.1",
81
+ "dayjs": "^1.11.9",
82
+ "eslint": "^8.53.0",
83
+ "eslint-plugin-node": "^11.1.0",
84
+ "eslint-plugin-react": "^7.33.1",
85
+ "eslint-plugin-react-hooks": "^4.6.0",
86
+ "parcel": "^2.12.0",
87
+ "process": "^0.11.10",
88
+ "react": "^18.2.0",
89
+ "react-dom": "^18.2.0",
90
+ "typescript": "5.6.3"
91
+ },
92
+ "browserslist": "> 0.5%, last 2 versions, not dead",
93
+ "dependencies": {
94
+ "exceljs": "^4.4.0"
95
+ }
96
+ }