@blinkk/root-cms 1.0.0-beta.6 → 1.0.0-beta.61
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/dist/app.js +8 -3
- package/dist/cli.js +21 -26
- package/dist/core.d.ts +81 -6
- package/dist/core.js +181 -17
- package/dist/functions.d.ts +13 -0
- package/dist/functions.js +120 -0
- package/dist/plugin.d.ts +20 -3
- package/dist/plugin.js +121 -30
- package/dist/project.d.ts +1 -1
- package/dist/{schema-e7beb758.d.ts → schema-0ae7566c.d.ts} +24 -2
- package/dist/ui/signin.css +10 -3
- package/dist/ui/signin.js +576 -579
- package/dist/ui/ui.css +522 -225
- package/dist/ui/ui.js +7260 -4721
- package/package.json +36 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blinkk/root-cms",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.61",
|
|
4
4
|
"author": "s@blinkk.com",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"directory": "packages/root-cms"
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
|
-
"dist
|
|
15
|
+
"dist/**/*"
|
|
16
16
|
],
|
|
17
17
|
"bin": {
|
|
18
18
|
"root-cms": "./bin/root-cms.js"
|
|
@@ -25,32 +25,40 @@
|
|
|
25
25
|
"types": "./dist/core.d.ts",
|
|
26
26
|
"import": "./dist/core.js"
|
|
27
27
|
},
|
|
28
|
-
"
|
|
29
|
-
"types": "./dist
|
|
30
|
-
"import": "./dist
|
|
28
|
+
"./core": {
|
|
29
|
+
"types": "./dist/core.d.ts",
|
|
30
|
+
"import": "./dist/core.js"
|
|
31
|
+
},
|
|
32
|
+
"./functions": {
|
|
33
|
+
"types": "./dist/functions.d.ts",
|
|
34
|
+
"import": "./dist/functions.js"
|
|
35
|
+
},
|
|
36
|
+
"./plugin": {
|
|
37
|
+
"types": "./dist/plugin.d.ts",
|
|
38
|
+
"import": "./dist/plugin.js"
|
|
39
|
+
},
|
|
40
|
+
"./project": {
|
|
41
|
+
"types": "./dist/project.d.ts",
|
|
42
|
+
"import": "./dist/project.js"
|
|
31
43
|
}
|
|
32
44
|
},
|
|
33
45
|
"dependencies": {
|
|
34
|
-
"@firebase/app-compat": "^0.1.33",
|
|
35
|
-
"@firebase/app-types": "^0.7.0",
|
|
36
46
|
"body-parser": "^1.20.0",
|
|
37
47
|
"commander": "^10.0.0",
|
|
38
|
-
"
|
|
39
|
-
"
|
|
48
|
+
"csv-parse": "^5.3.8",
|
|
49
|
+
"csv-stringify": "^6.3.2",
|
|
40
50
|
"dts-dom": "^3.7.0",
|
|
41
|
-
"esbuild": "^0.17.12",
|
|
42
|
-
"firebase-admin": "^11.5.0",
|
|
43
|
-
"js-beautify": "^1.14.7",
|
|
44
51
|
"kleur": "^4.1.5",
|
|
45
|
-
"preact-render-to-string": "^5.2.3",
|
|
46
52
|
"sirv": "^2.0.2",
|
|
47
53
|
"tiny-glob": "^0.2.9"
|
|
48
54
|
},
|
|
49
55
|
"//": "NOTE(stevenle): due to compat issues with mantine and preact, mantine is pinned to v4.2.12",
|
|
50
56
|
"devDependencies": {
|
|
51
57
|
"@babel/core": "^7.17.9",
|
|
52
|
-
"@blinkk/root": "1.0.0-beta.
|
|
58
|
+
"@blinkk/root": "1.0.0-beta.61",
|
|
53
59
|
"@emotion/react": "^11.10.5",
|
|
60
|
+
"@firebase/app-compat": "^0.1.33",
|
|
61
|
+
"@firebase/app-types": "^0.7.0",
|
|
54
62
|
"@firebase/rules-unit-testing": "^2.0.3",
|
|
55
63
|
"@mantine/core": "4.2.12",
|
|
56
64
|
"@mantine/hooks": "4.2.12",
|
|
@@ -58,16 +66,19 @@
|
|
|
58
66
|
"@mantine/notifications": "4.2.12",
|
|
59
67
|
"@mantine/spotlight": "4.2.12",
|
|
60
68
|
"@preact/compat": "^17.1.2",
|
|
61
|
-
"@tabler/icons-preact": "^2.
|
|
69
|
+
"@tabler/icons-preact": "^2.17.0",
|
|
62
70
|
"@types/body-parser": "^1.19.2",
|
|
63
|
-
"@types/cookie-parser": "^1.4.3",
|
|
64
71
|
"@types/jsonwebtoken": "^9.0.1",
|
|
65
72
|
"@types/marked": "^4.0.8",
|
|
66
73
|
"@types/node": "^18.11.8",
|
|
67
74
|
"concurrently": "^7.6.0",
|
|
75
|
+
"esbuild": "0.17.12",
|
|
68
76
|
"firebase": "^9.17.2",
|
|
77
|
+
"firebase-admin": "^11.5.0",
|
|
78
|
+
"firebase-functions": "^4.4.0",
|
|
69
79
|
"marked": "^4.2.12",
|
|
70
80
|
"preact": "*",
|
|
81
|
+
"preact-render-to-string": "^5.2.3",
|
|
71
82
|
"preact-router": "^4.1.0",
|
|
72
83
|
"react": "npm:@preact/compat@^17.1.2",
|
|
73
84
|
"react-dom": "npm:@preact/compat@^17.1.2",
|
|
@@ -77,9 +88,16 @@
|
|
|
77
88
|
"vitest": "^0.18.1"
|
|
78
89
|
},
|
|
79
90
|
"peerDependencies": {
|
|
80
|
-
"@blinkk/root": "1.0.0-beta.
|
|
91
|
+
"@blinkk/root": "1.0.0-beta.61",
|
|
81
92
|
"firebase-admin": ">=11",
|
|
82
|
-
"
|
|
93
|
+
"firebase-functions": ">=4",
|
|
94
|
+
"preact": "10.x",
|
|
95
|
+
"preact-render-to-string": "5.x"
|
|
96
|
+
},
|
|
97
|
+
"peerDependenciesMeta": {
|
|
98
|
+
"firebase-functions": {
|
|
99
|
+
"optional": true
|
|
100
|
+
}
|
|
83
101
|
},
|
|
84
102
|
"scripts": {
|
|
85
103
|
"build": "rm -rf dist && concurrently -n \"core,signin,ui\" npm:build:core npm:build:signin npm:build:ui",
|