@churchapps/apphelper 0.7.0 → 0.7.1
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 +157 -157
package/package.json
CHANGED
|
@@ -1,157 +1,157 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@churchapps/apphelper",
|
|
3
|
-
"version": "0.7.
|
|
4
|
-
"description": "Library of helper functions, components, and feature modules (donations/forms/login/markdown/website) for React and NextJS ChurchApps",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"sideEffects": [
|
|
9
|
-
"**/*.css"
|
|
10
|
-
],
|
|
11
|
-
"exports": {
|
|
12
|
-
".": {
|
|
13
|
-
"types": "./dist/index.d.ts",
|
|
14
|
-
"import": "./dist/index.js"
|
|
15
|
-
},
|
|
16
|
-
"./donations": {
|
|
17
|
-
"types": "./dist/donations/index.d.ts",
|
|
18
|
-
"import": "./dist/donations/index.js"
|
|
19
|
-
},
|
|
20
|
-
"./forms": {
|
|
21
|
-
"types": "./dist/forms/index.d.ts",
|
|
22
|
-
"import": "./dist/forms/index.js"
|
|
23
|
-
},
|
|
24
|
-
"./login": {
|
|
25
|
-
"types": "./dist/login/index.d.ts",
|
|
26
|
-
"import": "./dist/login/index.js"
|
|
27
|
-
},
|
|
28
|
-
"./markdown": {
|
|
29
|
-
"types": "./dist/markdown/index.d.ts",
|
|
30
|
-
"import": "./dist/markdown/index.js"
|
|
31
|
-
},
|
|
32
|
-
"./website": {
|
|
33
|
-
"types": "./dist/website/index.d.ts",
|
|
34
|
-
"import": "./dist/website/index.js"
|
|
35
|
-
},
|
|
36
|
-
"./public/*": "./dist/public/*",
|
|
37
|
-
"./dist/*": "./dist/*"
|
|
38
|
-
},
|
|
39
|
-
"files": [
|
|
40
|
-
"dist"
|
|
41
|
-
],
|
|
42
|
-
"scripts": {
|
|
43
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
44
|
-
"clean": "rimraf dist",
|
|
45
|
-
"tsc": "tsc",
|
|
46
|
-
"copy-locales": "copyfiles -a public/** dist",
|
|
47
|
-
"copy-css": "copyfiles -a public/css/** dist",
|
|
48
|
-
"copy-markdown-css": "copyfiles -u 1 src/markdown/components/**/*.css dist",
|
|
49
|
-
"copy-markdown-images": "copyfiles -u 1 src/markdown/components/**/images/**/* dist",
|
|
50
|
-
"copy-htmleditor-images": "copyfiles -u 5 src/markdown/components/markdownEditor/images/**/* dist/markdown/components/htmlEditor/images",
|
|
51
|
-
"copy-website-styles": "copyfiles -u 1 src/website/styles/**/*.css dist",
|
|
52
|
-
"copy-assets": "npm-run-all copy-locales copy-css copy-markdown-css copy-markdown-images copy-htmleditor-images copy-website-styles",
|
|
53
|
-
"build": "npm-run-all clean tsc copy-assets",
|
|
54
|
-
"lint": "eslint --fix src/",
|
|
55
|
-
"dev": "vite"
|
|
56
|
-
},
|
|
57
|
-
"repository": {
|
|
58
|
-
"type": "git",
|
|
59
|
-
"url": "git+https://github.com/ChurchApps/Packages.git",
|
|
60
|
-
"directory": "apphelper"
|
|
61
|
-
},
|
|
62
|
-
"keywords": [
|
|
63
|
-
"ChurchApps"
|
|
64
|
-
],
|
|
65
|
-
"author": "ChurchApps.org",
|
|
66
|
-
"license": "MIT",
|
|
67
|
-
"bugs": {
|
|
68
|
-
"url": "https://github.com/ChurchApps/Packages/issues"
|
|
69
|
-
},
|
|
70
|
-
"homepage": "https://github.com/ChurchApps/Packages#readme",
|
|
71
|
-
"peerDependencies": {
|
|
72
|
-
"react": "^18.0.0 || ^19.0.0",
|
|
73
|
-
"react-dom": "^18.0.0 || ^19.0.0",
|
|
74
|
-
"react-router-dom": "^7.6.3",
|
|
75
|
-
"@stripe/react-stripe-js": "^3.5.2",
|
|
76
|
-
"@stripe/stripe-js": "^7.4.0",
|
|
77
|
-
"react-google-recaptcha": "^3.1.0"
|
|
78
|
-
},
|
|
79
|
-
"peerDependenciesMeta": {
|
|
80
|
-
"@stripe/react-stripe-js": { "optional": true },
|
|
81
|
-
"@stripe/stripe-js": { "optional": true },
|
|
82
|
-
"react-google-recaptcha": { "optional": true }
|
|
83
|
-
},
|
|
84
|
-
"dependencies": {
|
|
85
|
-
"@churchapps/helpers": "^1.
|
|
86
|
-
"@emotion/cache": "^11.14.0",
|
|
87
|
-
"@emotion/react": "^11.14.0",
|
|
88
|
-
"@emotion/styled": "^11.14.1",
|
|
89
|
-
"@lexical/code": "^0.33.1",
|
|
90
|
-
"@lexical/html": "^0.33.1",
|
|
91
|
-
"@lexical/link": "^0.33.1",
|
|
92
|
-
"@lexical/list": "^0.33.1",
|
|
93
|
-
"@lexical/markdown": "^0.33.1",
|
|
94
|
-
"@lexical/react": "^0.33.1",
|
|
95
|
-
"@lexical/rich-text": "^0.33.1",
|
|
96
|
-
"@lexical/selection": "^0.33.1",
|
|
97
|
-
"@lexical/table": "^0.33.1",
|
|
98
|
-
"@lexical/utils": "^0.33.1",
|
|
99
|
-
"@mui/icons-material": "^7.3.4",
|
|
100
|
-
"@mui/lab": "^7.0.0-beta.16",
|
|
101
|
-
"@mui/material": "^7.3.1",
|
|
102
|
-
"@react-google-maps/api": "^2.20.8",
|
|
103
|
-
"axios": "^1.11.0",
|
|
104
|
-
"cropperjs": "^1.6.2",
|
|
105
|
-
"date-fns": "^4.1.0",
|
|
106
|
-
"flexsearch": "0.8.205",
|
|
107
|
-
"i18next": "^25.3.2",
|
|
108
|
-
"i18next-browser-languagedetector": "^8.2.0",
|
|
109
|
-
"i18next-chained-backend": "^4.6.2",
|
|
110
|
-
"i18next-http-backend": "^3.0.2",
|
|
111
|
-
"jwt-decode": "^4.0.0",
|
|
112
|
-
"lexical": "^0.33.1",
|
|
113
|
-
"marked": "^16.1.2",
|
|
114
|
-
"material-symbols": "^0.33.0",
|
|
115
|
-
"moment": "^2.30.1",
|
|
116
|
-
"mui-tel-input": "^9.0.1",
|
|
117
|
-
"react-activity": "^2.1.3",
|
|
118
|
-
"react-big-calendar": "^1.19.4",
|
|
119
|
-
"react-cookie": "^8.0.1",
|
|
120
|
-
"react-cropper": "^2.3.3",
|
|
121
|
-
"react-csv": "^2.2.2",
|
|
122
|
-
"react-dnd": "^16.0.1",
|
|
123
|
-
"react-dnd-html5-backend": "^16.0.1",
|
|
124
|
-
"react-ga4": "^2.1.0",
|
|
125
|
-
"react-google-charts": "^5.2.1",
|
|
126
|
-
"react-i18next": "^15.6.1",
|
|
127
|
-
"react-to-print": "^3.1.1",
|
|
128
|
-
"rrule": "^2.8.1",
|
|
129
|
-
"slug": "^11.0.0"
|
|
130
|
-
},
|
|
131
|
-
"devDependencies": {
|
|
132
|
-
"@eslint/js": "^9.28.0",
|
|
133
|
-
"@stripe/react-stripe-js": "^3.5.2",
|
|
134
|
-
"@stripe/stripe-js": "^7.4.0",
|
|
135
|
-
"@types/node": "^24.2.0",
|
|
136
|
-
"@types/react": "^19.1.9",
|
|
137
|
-
"@types/react-big-calendar": "^1.16.3",
|
|
138
|
-
"@types/react-csv": "^1.1.10",
|
|
139
|
-
"@types/react-dom": "^19.1.7",
|
|
140
|
-
"@types/react-google-recaptcha": "^2.1.9",
|
|
141
|
-
"@types/slug": "^5.0.9",
|
|
142
|
-
"@vitejs/plugin-react": "^4.7.0",
|
|
143
|
-
"copyfiles": "^2.4.1",
|
|
144
|
-
"eslint": "^9.28.0",
|
|
145
|
-
"eslint-plugin-unused-imports": "^4.4.1",
|
|
146
|
-
"globals": "^16.2.0",
|
|
147
|
-
"npm-run-all2": "^8.0.4",
|
|
148
|
-
"react": "^19.1.0",
|
|
149
|
-
"react-dom": "^19.1.0",
|
|
150
|
-
"react-google-recaptcha": "^3.1.0",
|
|
151
|
-
"react-router-dom": "^7.6.3",
|
|
152
|
-
"rimraf": "^6.0.1",
|
|
153
|
-
"typescript": "^5.9.2",
|
|
154
|
-
"typescript-eslint": "^8.35.0",
|
|
155
|
-
"vite": "^7.0.6"
|
|
156
|
-
}
|
|
157
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@churchapps/apphelper",
|
|
3
|
+
"version": "0.7.1",
|
|
4
|
+
"description": "Library of helper functions, components, and feature modules (donations/forms/login/markdown/website) for React and NextJS ChurchApps",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"sideEffects": [
|
|
9
|
+
"**/*.css"
|
|
10
|
+
],
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./donations": {
|
|
17
|
+
"types": "./dist/donations/index.d.ts",
|
|
18
|
+
"import": "./dist/donations/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./forms": {
|
|
21
|
+
"types": "./dist/forms/index.d.ts",
|
|
22
|
+
"import": "./dist/forms/index.js"
|
|
23
|
+
},
|
|
24
|
+
"./login": {
|
|
25
|
+
"types": "./dist/login/index.d.ts",
|
|
26
|
+
"import": "./dist/login/index.js"
|
|
27
|
+
},
|
|
28
|
+
"./markdown": {
|
|
29
|
+
"types": "./dist/markdown/index.d.ts",
|
|
30
|
+
"import": "./dist/markdown/index.js"
|
|
31
|
+
},
|
|
32
|
+
"./website": {
|
|
33
|
+
"types": "./dist/website/index.d.ts",
|
|
34
|
+
"import": "./dist/website/index.js"
|
|
35
|
+
},
|
|
36
|
+
"./public/*": "./dist/public/*",
|
|
37
|
+
"./dist/*": "./dist/*"
|
|
38
|
+
},
|
|
39
|
+
"files": [
|
|
40
|
+
"dist"
|
|
41
|
+
],
|
|
42
|
+
"scripts": {
|
|
43
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
44
|
+
"clean": "rimraf dist",
|
|
45
|
+
"tsc": "tsc",
|
|
46
|
+
"copy-locales": "copyfiles -a public/** dist",
|
|
47
|
+
"copy-css": "copyfiles -a public/css/** dist",
|
|
48
|
+
"copy-markdown-css": "copyfiles -u 1 src/markdown/components/**/*.css dist",
|
|
49
|
+
"copy-markdown-images": "copyfiles -u 1 src/markdown/components/**/images/**/* dist",
|
|
50
|
+
"copy-htmleditor-images": "copyfiles -u 5 src/markdown/components/markdownEditor/images/**/* dist/markdown/components/htmlEditor/images",
|
|
51
|
+
"copy-website-styles": "copyfiles -u 1 src/website/styles/**/*.css dist",
|
|
52
|
+
"copy-assets": "npm-run-all copy-locales copy-css copy-markdown-css copy-markdown-images copy-htmleditor-images copy-website-styles",
|
|
53
|
+
"build": "npm-run-all clean tsc copy-assets",
|
|
54
|
+
"lint": "eslint --fix src/",
|
|
55
|
+
"dev": "vite"
|
|
56
|
+
},
|
|
57
|
+
"repository": {
|
|
58
|
+
"type": "git",
|
|
59
|
+
"url": "git+https://github.com/ChurchApps/Packages.git",
|
|
60
|
+
"directory": "apphelper"
|
|
61
|
+
},
|
|
62
|
+
"keywords": [
|
|
63
|
+
"ChurchApps"
|
|
64
|
+
],
|
|
65
|
+
"author": "ChurchApps.org",
|
|
66
|
+
"license": "MIT",
|
|
67
|
+
"bugs": {
|
|
68
|
+
"url": "https://github.com/ChurchApps/Packages/issues"
|
|
69
|
+
},
|
|
70
|
+
"homepage": "https://github.com/ChurchApps/Packages#readme",
|
|
71
|
+
"peerDependencies": {
|
|
72
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
73
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
74
|
+
"react-router-dom": "^7.6.3",
|
|
75
|
+
"@stripe/react-stripe-js": "^3.5.2",
|
|
76
|
+
"@stripe/stripe-js": "^7.4.0",
|
|
77
|
+
"react-google-recaptcha": "^3.1.0"
|
|
78
|
+
},
|
|
79
|
+
"peerDependenciesMeta": {
|
|
80
|
+
"@stripe/react-stripe-js": { "optional": true },
|
|
81
|
+
"@stripe/stripe-js": { "optional": true },
|
|
82
|
+
"react-google-recaptcha": { "optional": true }
|
|
83
|
+
},
|
|
84
|
+
"dependencies": {
|
|
85
|
+
"@churchapps/helpers": "^1.3.0",
|
|
86
|
+
"@emotion/cache": "^11.14.0",
|
|
87
|
+
"@emotion/react": "^11.14.0",
|
|
88
|
+
"@emotion/styled": "^11.14.1",
|
|
89
|
+
"@lexical/code": "^0.33.1",
|
|
90
|
+
"@lexical/html": "^0.33.1",
|
|
91
|
+
"@lexical/link": "^0.33.1",
|
|
92
|
+
"@lexical/list": "^0.33.1",
|
|
93
|
+
"@lexical/markdown": "^0.33.1",
|
|
94
|
+
"@lexical/react": "^0.33.1",
|
|
95
|
+
"@lexical/rich-text": "^0.33.1",
|
|
96
|
+
"@lexical/selection": "^0.33.1",
|
|
97
|
+
"@lexical/table": "^0.33.1",
|
|
98
|
+
"@lexical/utils": "^0.33.1",
|
|
99
|
+
"@mui/icons-material": "^7.3.4",
|
|
100
|
+
"@mui/lab": "^7.0.0-beta.16",
|
|
101
|
+
"@mui/material": "^7.3.1",
|
|
102
|
+
"@react-google-maps/api": "^2.20.8",
|
|
103
|
+
"axios": "^1.11.0",
|
|
104
|
+
"cropperjs": "^1.6.2",
|
|
105
|
+
"date-fns": "^4.1.0",
|
|
106
|
+
"flexsearch": "0.8.205",
|
|
107
|
+
"i18next": "^25.3.2",
|
|
108
|
+
"i18next-browser-languagedetector": "^8.2.0",
|
|
109
|
+
"i18next-chained-backend": "^4.6.2",
|
|
110
|
+
"i18next-http-backend": "^3.0.2",
|
|
111
|
+
"jwt-decode": "^4.0.0",
|
|
112
|
+
"lexical": "^0.33.1",
|
|
113
|
+
"marked": "^16.1.2",
|
|
114
|
+
"material-symbols": "^0.33.0",
|
|
115
|
+
"moment": "^2.30.1",
|
|
116
|
+
"mui-tel-input": "^9.0.1",
|
|
117
|
+
"react-activity": "^2.1.3",
|
|
118
|
+
"react-big-calendar": "^1.19.4",
|
|
119
|
+
"react-cookie": "^8.0.1",
|
|
120
|
+
"react-cropper": "^2.3.3",
|
|
121
|
+
"react-csv": "^2.2.2",
|
|
122
|
+
"react-dnd": "^16.0.1",
|
|
123
|
+
"react-dnd-html5-backend": "^16.0.1",
|
|
124
|
+
"react-ga4": "^2.1.0",
|
|
125
|
+
"react-google-charts": "^5.2.1",
|
|
126
|
+
"react-i18next": "^15.6.1",
|
|
127
|
+
"react-to-print": "^3.1.1",
|
|
128
|
+
"rrule": "^2.8.1",
|
|
129
|
+
"slug": "^11.0.0"
|
|
130
|
+
},
|
|
131
|
+
"devDependencies": {
|
|
132
|
+
"@eslint/js": "^9.28.0",
|
|
133
|
+
"@stripe/react-stripe-js": "^3.5.2",
|
|
134
|
+
"@stripe/stripe-js": "^7.4.0",
|
|
135
|
+
"@types/node": "^24.2.0",
|
|
136
|
+
"@types/react": "^19.1.9",
|
|
137
|
+
"@types/react-big-calendar": "^1.16.3",
|
|
138
|
+
"@types/react-csv": "^1.1.10",
|
|
139
|
+
"@types/react-dom": "^19.1.7",
|
|
140
|
+
"@types/react-google-recaptcha": "^2.1.9",
|
|
141
|
+
"@types/slug": "^5.0.9",
|
|
142
|
+
"@vitejs/plugin-react": "^4.7.0",
|
|
143
|
+
"copyfiles": "^2.4.1",
|
|
144
|
+
"eslint": "^9.28.0",
|
|
145
|
+
"eslint-plugin-unused-imports": "^4.4.1",
|
|
146
|
+
"globals": "^16.2.0",
|
|
147
|
+
"npm-run-all2": "^8.0.4",
|
|
148
|
+
"react": "^19.1.0",
|
|
149
|
+
"react-dom": "^19.1.0",
|
|
150
|
+
"react-google-recaptcha": "^3.1.0",
|
|
151
|
+
"react-router-dom": "^7.6.3",
|
|
152
|
+
"rimraf": "^6.0.1",
|
|
153
|
+
"typescript": "^5.9.2",
|
|
154
|
+
"typescript-eslint": "^8.35.0",
|
|
155
|
+
"vite": "^7.0.6"
|
|
156
|
+
}
|
|
157
|
+
}
|