@blinkk/root-cms 1.0.0-rc.3 → 1.0.0-rc.31

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blinkk/root-cms",
3
- "version": "1.0.0-rc.3",
3
+ "version": "1.0.0-rc.31",
4
4
  "author": "s@blinkk.com",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -44,54 +44,71 @@
44
44
  "./project": {
45
45
  "types": "./dist/project.d.ts",
46
46
  "import": "./dist/project.js"
47
+ },
48
+ "./richtext": {
49
+ "types": "./dist/richtext.d.ts",
50
+ "import": "./dist/richtext.js"
47
51
  }
48
52
  },
49
53
  "dependencies": {
50
- "body-parser": "^1.20.2",
51
- "commander": "^11.0.0",
52
- "csv-parse": "^5.5.2",
53
- "csv-stringify": "^6.4.4",
54
- "dts-dom": "^3.7.0",
55
- "kleur": "^4.1.5",
56
- "sirv": "^2.0.3",
57
- "tiny-glob": "^0.2.9"
54
+ "body-parser": "1.20.2",
55
+ "commander": "11.0.0",
56
+ "csv-parse": "5.5.2",
57
+ "csv-stringify": "6.4.4",
58
+ "dts-dom": "3.7.0",
59
+ "jsonwebtoken": "^9.0.2",
60
+ "kleur": "4.1.5",
61
+ "sirv": "2.0.3",
62
+ "tiny-glob": "0.2.9"
58
63
  },
59
64
  "//": "NOTE(stevenle): due to compat issues with mantine and preact, mantine is pinned to v4.2.12",
60
65
  "devDependencies": {
61
- "@babel/core": "^7.17.9",
62
- "@emotion/react": "^11.10.5",
63
- "@firebase/app-compat": "^0.2.19",
64
- "@firebase/app-types": "^0.9.0",
65
- "@firebase/rules-unit-testing": "^3.0.1",
66
+ "@babel/core": "7.17.9",
67
+ "@editorjs/editorjs": "2.28.2",
68
+ "@editorjs/header": "2.8.1",
69
+ "@editorjs/image": "2.9.0",
70
+ "@editorjs/list": "1.9.0",
71
+ "@editorjs/nested-list": "1.4.2",
72
+ "@editorjs/raw": "2.5.0",
73
+ "@editorjs/table": "2.3.0",
74
+ "@editorjs/underline": "1.1.0",
75
+ "@emotion/react": "11.10.5",
76
+ "@firebase/app-compat": "0.2.19",
77
+ "@firebase/app-types": "0.9.0",
78
+ "@firebase/rules-unit-testing": "3.0.1",
66
79
  "@mantine/core": "4.2.12",
67
80
  "@mantine/hooks": "4.2.12",
68
81
  "@mantine/modals": "4.2.12",
69
82
  "@mantine/notifications": "4.2.12",
70
83
  "@mantine/spotlight": "4.2.12",
71
- "@preact/compat": "^17.1.2",
72
- "@tabler/icons-preact": "^2.39.0",
73
- "@types/body-parser": "^1.19.3",
74
- "@types/jsonwebtoken": "^9.0.1",
75
- "@types/node": "^18.11.8",
76
- "concurrently": "^7.6.0",
77
- "esbuild": "0.19.4",
78
- "firebase": "^10.5.2",
79
- "firebase-admin": "^11.11.0",
80
- "firebase-functions": "^4.4.1",
81
- "marked": "^9.1.1",
82
- "preact": "*",
83
- "preact-render-to-string": "^6.2.2",
84
- "preact-router": "^4.1.2",
84
+ "@preact/compat": "17.1.2",
85
+ "@tabler/icons-preact": "2.39.0",
86
+ "@types/body-parser": "1.19.3",
87
+ "@types/gapi": "0.0.47",
88
+ "@types/gapi.client.sheets-v4": "0.0.4",
89
+ "@types/google.accounts": "0.0.14",
90
+ "@types/jsonwebtoken": "9.0.1",
91
+ "@types/node": "18.11.8",
92
+ "concurrently": "7.6.0",
93
+ "esbuild": "0.19.9",
94
+ "firebase": "10.5.2",
95
+ "firebase-admin": "11.11.1",
96
+ "firebase-functions": "4.5.0",
97
+ "firebase-tools": "12.9.1",
98
+ "marked": "9.1.1",
99
+ "preact": "10.19.3",
100
+ "preact-render-to-string": "6.3.1",
101
+ "preact-router": "4.1.2",
85
102
  "react": "npm:@preact/compat@^17.1.2",
86
103
  "react-dom": "npm:@preact/compat@^17.1.2",
87
- "tsup": "^7.2.0",
104
+ "tsup": "8.0.1",
88
105
  "typescript": "5.2.2",
89
- "vite": "4.4.11",
90
- "vitest": "^0.34.6",
91
- "@blinkk/root": "1.0.0-rc.3"
106
+ "vite": "5.0.8",
107
+ "vitest": "0.34.6",
108
+ "@blinkk/root": "1.0.0-rc.31"
92
109
  },
93
110
  "peerDependencies": {
94
- "@blinkk/root": "1.0.0-rc.3",
111
+ "@blinkk/root": "1.0.0-rc.31",
95
112
  "firebase-admin": ">=11",
96
113
  "firebase-functions": ">=4",
97
114
  "preact": ">=10",
@@ -106,8 +123,8 @@
106
123
  "build": "rm -rf dist && concurrently -n \"core,signin,ui\" npm:build:core npm:build:signin npm:build:ui",
107
124
  "build:core": "tsup-node --config=./core/tsup.config.ts",
108
125
  "//": "NOTE: esbuild is used here because tsup doesn't currently support aliases.",
109
- "build:ui": "esbuild ui/ui.tsx --bundle --alias:react=@preact/compat --alias:react-dom=@preact/compat --tsconfig=ui/tsconfig.json --outdir=dist/ui",
110
- "build:signin": "esbuild signin/signin.tsx --bundle --tsconfig=signin/tsconfig.json --outdir=dist/ui",
126
+ "build:ui": "esbuild ui/ui.tsx --bundle --alias:react=@preact/compat --alias:react-dom=@preact/compat --tsconfig=ui/tsconfig.json --sourcemap=inline --outdir=dist/ui",
127
+ "build:signin": "esbuild signin/signin.tsx --bundle --tsconfig=signin/tsconfig.json --sourcemap=inline --outdir=dist/ui",
111
128
  "dev": "rm -rf dist && concurrently -k -n \"core,ui\" npm:dev:core npm:dev:signin npm:dev:ui",
112
129
  "dev:core": "pnpm build:core --watch",
113
130
  "dev:signin": "pnpm build:signin --watch",