@firecms/core 3.0.0-alpha.7
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/LICENSE +21 -0
- package/README.md +175 -0
- package/dist/index.es.js +27346 -0
- package/dist/index.es.js.map +1 -0
- package/dist/index.umd.js +1611 -0
- package/dist/index.umd.js.map +1 -0
- package/package.json +144 -0
package/package.json
ADDED
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@firecms/core",
|
|
3
|
+
"version": "3.0.0-alpha.7",
|
|
4
|
+
"description": "Awesome Firebase/Firestore-based headless open-source CMS",
|
|
5
|
+
"funding": {
|
|
6
|
+
"url": "https://github.com/sponsors/firecmsco"
|
|
7
|
+
},
|
|
8
|
+
"author": "FireCMS",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"repository": "git@github.com:FireCMSco/firecms.git",
|
|
11
|
+
"main": "./dist/index.umd.js",
|
|
12
|
+
"module": "./dist/index.es.js",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"source": "src/index.ts",
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=14"
|
|
17
|
+
},
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"import": "./dist/index.es.js",
|
|
21
|
+
"require": "./dist/index.umd.js",
|
|
22
|
+
"types": "./dist/index.d.ts"
|
|
23
|
+
},
|
|
24
|
+
"./components": {
|
|
25
|
+
"import": "./dist/components/index.es.js",
|
|
26
|
+
"require": "./dist/components/index.umd.js",
|
|
27
|
+
"types": "./dist/components/index.d.ts"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"keywords": [
|
|
31
|
+
"firebase",
|
|
32
|
+
"cms",
|
|
33
|
+
"admin",
|
|
34
|
+
"admin panel",
|
|
35
|
+
"firebase panel",
|
|
36
|
+
"firestore",
|
|
37
|
+
"headless",
|
|
38
|
+
"headless cms",
|
|
39
|
+
"content manager"
|
|
40
|
+
],
|
|
41
|
+
"scripts": {
|
|
42
|
+
"watch": "vite build --watch",
|
|
43
|
+
"build": "vite build",
|
|
44
|
+
"prepublishOnly": "run-s build",
|
|
45
|
+
"createTag": "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags",
|
|
46
|
+
"test:lint": "eslint \"src/**\" --quiet",
|
|
47
|
+
"test": "jest",
|
|
48
|
+
"generateIcons": "ts-node --esm src/icons/generateIcons.ts"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@date-io/date-fns": "^2.16.0",
|
|
52
|
+
"@fontsource/ibm-plex-mono": "^4.5.13",
|
|
53
|
+
"@fontsource/roboto": "^5.0.3",
|
|
54
|
+
"@hello-pangea/dnd": "^16.2.0",
|
|
55
|
+
"@material-design-icons/font": "latest",
|
|
56
|
+
"@radix-ui/react-checkbox": "^1.0.4",
|
|
57
|
+
"@radix-ui/react-collapsible": "^1.0.3",
|
|
58
|
+
"@radix-ui/react-dialog": "^1.0.4",
|
|
59
|
+
"@radix-ui/react-dropdown-menu": "^2.0.5",
|
|
60
|
+
"@radix-ui/react-popover": "^1.0.6",
|
|
61
|
+
"@radix-ui/react-portal": "^1.0.3",
|
|
62
|
+
"@radix-ui/react-scroll-area": "^1.0.4",
|
|
63
|
+
"@radix-ui/react-select": "^1.2.2",
|
|
64
|
+
"@radix-ui/react-switch": "^1.0.3",
|
|
65
|
+
"@radix-ui/react-tabs": "^1.0.4",
|
|
66
|
+
"@radix-ui/react-tooltip": "^1.0.6",
|
|
67
|
+
"cmdk": "^0.2.0",
|
|
68
|
+
"date-fns": "^2.30.0",
|
|
69
|
+
"formik": "^2.4.1",
|
|
70
|
+
"history": "^5.3.0",
|
|
71
|
+
"js-search": "^2.0.1",
|
|
72
|
+
"markdown-it": "^13.0.1",
|
|
73
|
+
"notistack": "^3.0.1",
|
|
74
|
+
"object-hash": "^3.0.0",
|
|
75
|
+
"react-datepicker": "^4.16.0",
|
|
76
|
+
"react-dropzone": "^14.2.3",
|
|
77
|
+
"react-fast-compare": "^3.2.2",
|
|
78
|
+
"react-image-file-resizer": "^0.4.8",
|
|
79
|
+
"react-markdown-editor-lite": "^1.3.4",
|
|
80
|
+
"react-transition-group": "^4.4.5",
|
|
81
|
+
"react-use-measure": "^2.1.1",
|
|
82
|
+
"react-window": "^1.8.9",
|
|
83
|
+
"tailwind-merge": "^1.14.0",
|
|
84
|
+
"typeface-rubik": "^1.1.13",
|
|
85
|
+
"yup": "^0.32.11"
|
|
86
|
+
},
|
|
87
|
+
"peerDependencies": {
|
|
88
|
+
"algoliasearch": "^4.13.0",
|
|
89
|
+
"firebase": "^10.4.0",
|
|
90
|
+
"react": "^18.0.0",
|
|
91
|
+
"react-dom": "^18.0.0",
|
|
92
|
+
"react-router": "^6.2.0",
|
|
93
|
+
"react-router-dom": "^6.2.0"
|
|
94
|
+
},
|
|
95
|
+
"eslintConfig": {
|
|
96
|
+
"extends": [
|
|
97
|
+
"react-app",
|
|
98
|
+
"react-app/jest"
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
"devDependencies": {
|
|
102
|
+
"@jest/globals": "^29.7.0",
|
|
103
|
+
"@testing-library/jest-dom": "^5.16.5",
|
|
104
|
+
"@testing-library/react": "^14.0.0",
|
|
105
|
+
"@testing-library/user-event": "^14.4.3",
|
|
106
|
+
"@types/jest": "^29.5.2",
|
|
107
|
+
"@types/node": "^18.16.16",
|
|
108
|
+
"@types/object-hash": "^3.0.2",
|
|
109
|
+
"@types/react": "^18.2.8",
|
|
110
|
+
"@types/react-dom": "^18.2.4",
|
|
111
|
+
"@types/react-measure": "^2.0.8",
|
|
112
|
+
"@typescript-eslint/eslint-plugin": "^5.59.11",
|
|
113
|
+
"@typescript-eslint/parser": "^5.59.11",
|
|
114
|
+
"@vitejs/plugin-react": "^4.0.0",
|
|
115
|
+
"algoliasearch": "^4.17.1",
|
|
116
|
+
"cross-env": "^7.0.3",
|
|
117
|
+
"eslint": "^8.42.0",
|
|
118
|
+
"eslint-config-standard": "^17.1.0",
|
|
119
|
+
"eslint-plugin-import": "^2.27.5",
|
|
120
|
+
"eslint-plugin-n": "^15.7.0",
|
|
121
|
+
"eslint-plugin-promise": "^6.1.1",
|
|
122
|
+
"eslint-plugin-react": "^7.32.2",
|
|
123
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
124
|
+
"firebase": "^10.4.0",
|
|
125
|
+
"jest": "^29.7.0",
|
|
126
|
+
"npm-run-all": "^4.1.5",
|
|
127
|
+
"react": "^18.2.0",
|
|
128
|
+
"react-dom": "^18.2.0",
|
|
129
|
+
"react-router": "^6.12.0",
|
|
130
|
+
"react-router-dom": "^6.12.0",
|
|
131
|
+
"ts-jest": "^29.1.1",
|
|
132
|
+
"ts-node": "^10.9.1",
|
|
133
|
+
"tsd": "^0.28.1",
|
|
134
|
+
"typescript": "^5.2.2",
|
|
135
|
+
"vite": "^4.3.9"
|
|
136
|
+
},
|
|
137
|
+
"files": [
|
|
138
|
+
"dist"
|
|
139
|
+
],
|
|
140
|
+
"gitHead": "b7cc1558378034282eaac7c9cc425853eddf4e5c",
|
|
141
|
+
"publishConfig": {
|
|
142
|
+
"access": "public"
|
|
143
|
+
}
|
|
144
|
+
}
|