@blinkk/root-cms 1.0.0-beta.9 → 1.0.0-rc.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/dist/app.js +93 -136
- package/dist/cli.js +59 -52
- package/dist/client.d.ts +186 -0
- package/dist/client.js +334 -0
- package/dist/core.d.ts +35 -21
- package/dist/core.js +495 -67
- package/dist/functions.d.ts +13 -0
- package/dist/functions.js +261 -0
- package/dist/plugin.d.ts +20 -3
- package/dist/plugin.js +386 -34
- package/dist/project.d.ts +1 -1
- package/dist/project.js +4 -1
- package/dist/{schema-e7beb758.d.ts → schema-49de9659.d.ts} +70 -48
- package/dist/ui/signin.css +10 -3
- package/dist/ui/signin.js +1401 -764
- package/dist/ui/ui.css +525 -192
- package/dist/ui/ui.js +15674 -11422
- package/package.json +52 -31
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blinkk/root-cms",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-rc.1",
|
|
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,61 +25,82 @@
|
|
|
25
25
|
"types": "./dist/core.d.ts",
|
|
26
26
|
"import": "./dist/core.js"
|
|
27
27
|
},
|
|
28
|
-
"
|
|
29
|
-
"types": "./dist
|
|
30
|
-
"import": "./dist
|
|
28
|
+
"./client": {
|
|
29
|
+
"types": "./dist/client.d.ts",
|
|
30
|
+
"import": "./dist/client.js"
|
|
31
|
+
},
|
|
32
|
+
"./core": {
|
|
33
|
+
"types": "./dist/core.d.ts",
|
|
34
|
+
"import": "./dist/core.js"
|
|
35
|
+
},
|
|
36
|
+
"./functions": {
|
|
37
|
+
"types": "./dist/functions.d.ts",
|
|
38
|
+
"import": "./dist/functions.js"
|
|
39
|
+
},
|
|
40
|
+
"./plugin": {
|
|
41
|
+
"types": "./dist/plugin.d.ts",
|
|
42
|
+
"import": "./dist/plugin.js"
|
|
43
|
+
},
|
|
44
|
+
"./project": {
|
|
45
|
+
"types": "./dist/project.d.ts",
|
|
46
|
+
"import": "./dist/project.js"
|
|
31
47
|
}
|
|
32
48
|
},
|
|
33
49
|
"dependencies": {
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"cookie-parser": "^1.4.6",
|
|
39
|
-
"dotenv": "^16.0.0",
|
|
50
|
+
"body-parser": "^1.20.2",
|
|
51
|
+
"commander": "^11.0.0",
|
|
52
|
+
"csv-parse": "^5.5.2",
|
|
53
|
+
"csv-stringify": "^6.4.4",
|
|
40
54
|
"dts-dom": "^3.7.0",
|
|
41
|
-
"esbuild": "^0.17.12",
|
|
42
|
-
"firebase-admin": "^11.5.0",
|
|
43
|
-
"js-beautify": "^1.14.7",
|
|
44
55
|
"kleur": "^4.1.5",
|
|
45
|
-
"
|
|
46
|
-
"sirv": "^2.0.2",
|
|
56
|
+
"sirv": "^2.0.3",
|
|
47
57
|
"tiny-glob": "^0.2.9"
|
|
48
58
|
},
|
|
49
59
|
"//": "NOTE(stevenle): due to compat issues with mantine and preact, mantine is pinned to v4.2.12",
|
|
50
60
|
"devDependencies": {
|
|
51
61
|
"@babel/core": "^7.17.9",
|
|
52
|
-
"@blinkk/root": "1.0.0-beta.9",
|
|
53
62
|
"@emotion/react": "^11.10.5",
|
|
54
|
-
"@firebase/
|
|
63
|
+
"@firebase/app-compat": "^0.2.19",
|
|
64
|
+
"@firebase/app-types": "^0.9.0",
|
|
65
|
+
"@firebase/rules-unit-testing": "^3.0.1",
|
|
55
66
|
"@mantine/core": "4.2.12",
|
|
56
67
|
"@mantine/hooks": "4.2.12",
|
|
57
68
|
"@mantine/modals": "4.2.12",
|
|
58
69
|
"@mantine/notifications": "4.2.12",
|
|
59
70
|
"@mantine/spotlight": "4.2.12",
|
|
60
71
|
"@preact/compat": "^17.1.2",
|
|
61
|
-
"@tabler/icons-preact": "^2.
|
|
62
|
-
"@types/body-parser": "^1.19.
|
|
63
|
-
"@types/cookie-parser": "^1.4.3",
|
|
72
|
+
"@tabler/icons-preact": "^2.39.0",
|
|
73
|
+
"@types/body-parser": "^1.19.3",
|
|
64
74
|
"@types/jsonwebtoken": "^9.0.1",
|
|
65
|
-
"@types/marked": "^4.0.8",
|
|
66
75
|
"@types/node": "^18.11.8",
|
|
67
76
|
"concurrently": "^7.6.0",
|
|
68
|
-
"
|
|
69
|
-
"
|
|
77
|
+
"esbuild": "0.19.4",
|
|
78
|
+
"firebase": "^10.4.0",
|
|
79
|
+
"firebase-admin": "^11.11.0",
|
|
80
|
+
"firebase-functions": "^4.4.1",
|
|
81
|
+
"marked": "^9.1.1",
|
|
70
82
|
"preact": "*",
|
|
71
|
-
"preact-
|
|
83
|
+
"preact-render-to-string": "^6.2.2",
|
|
84
|
+
"preact-router": "^4.1.2",
|
|
72
85
|
"react": "npm:@preact/compat@^17.1.2",
|
|
73
86
|
"react-dom": "npm:@preact/compat@^17.1.2",
|
|
74
|
-
"tsup": "^
|
|
75
|
-
"typescript": "
|
|
76
|
-
"vite": "4.
|
|
77
|
-
"vitest": "^0.
|
|
87
|
+
"tsup": "^7.2.0",
|
|
88
|
+
"typescript": "5.2.2",
|
|
89
|
+
"vite": "4.4.11",
|
|
90
|
+
"vitest": "^0.34.6",
|
|
91
|
+
"@blinkk/root": "1.0.0-rc.1"
|
|
78
92
|
},
|
|
79
93
|
"peerDependencies": {
|
|
80
|
-
"@blinkk/root": "1.0.0-
|
|
94
|
+
"@blinkk/root": "1.0.0-rc.1",
|
|
81
95
|
"firebase-admin": ">=11",
|
|
82
|
-
"
|
|
96
|
+
"firebase-functions": ">=4",
|
|
97
|
+
"preact": ">=10",
|
|
98
|
+
"preact-render-to-string": ">=5"
|
|
99
|
+
},
|
|
100
|
+
"peerDependenciesMeta": {
|
|
101
|
+
"firebase-functions": {
|
|
102
|
+
"optional": true
|
|
103
|
+
}
|
|
83
104
|
},
|
|
84
105
|
"scripts": {
|
|
85
106
|
"build": "rm -rf dist && concurrently -n \"core,signin,ui\" npm:build:core npm:build:signin npm:build:ui",
|