@hachej/boring-core 0.1.23 → 0.1.26
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/{CoreFront-CgAkiEts.d.ts → CoreFront-N0QJSYaM.d.ts} +4 -1
- package/dist/app/front/index.d.ts +17 -3
- package/dist/app/front/index.js +462 -70
- package/dist/app/server/index.js +6 -5
- package/dist/{chunk-6D7LEQSL.js → chunk-2JDK4XUZ.js} +72 -31
- package/dist/{chunk-JMCBLJ6W.js → chunk-5R3U6QKD.js} +174 -81
- package/dist/front/index.d.ts +33 -3
- package/dist/front/index.js +5 -3
- package/dist/server/index.js +1 -1
- package/package.json +7 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hachej/boring-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.26",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Foundation package for boring-ui-v2 apps: DB, auth, config, HTTP app factory, and frontend app shell.",
|
|
@@ -73,14 +73,15 @@
|
|
|
73
73
|
"nodemailer": "^8.0.6",
|
|
74
74
|
"pino": "^10.3.1",
|
|
75
75
|
"postgres": "^3.4.9",
|
|
76
|
+
"posthog-node": "^5.35.1",
|
|
76
77
|
"react-helmet-async": "^2.0.5",
|
|
77
78
|
"react-hook-form": "^7.74.0",
|
|
78
79
|
"react-router-dom": "^7.14.2",
|
|
79
80
|
"smol-toml": "^1.6.1",
|
|
80
81
|
"zod": "^3.25.76",
|
|
81
|
-
"@hachej/boring-
|
|
82
|
-
"@hachej/boring-workspace": "0.1.
|
|
83
|
-
"@hachej/boring-
|
|
82
|
+
"@hachej/boring-ui-kit": "0.1.26",
|
|
83
|
+
"@hachej/boring-workspace": "0.1.26",
|
|
84
|
+
"@hachej/boring-agent": "0.1.26"
|
|
84
85
|
},
|
|
85
86
|
"devDependencies": {
|
|
86
87
|
"@testing-library/jest-dom": "^6.9.1",
|
|
@@ -112,11 +113,11 @@
|
|
|
112
113
|
}
|
|
113
114
|
},
|
|
114
115
|
"scripts": {
|
|
115
|
-
"build": "
|
|
116
|
+
"build": "tsup && cp src/front/theme.css dist/front/theme.css && mkdir -p dist/app/front && cp src/app/front/styles.css dist/app/front/styles.css",
|
|
116
117
|
"dev": "tsup --watch",
|
|
117
118
|
"test": "vitest run --no-file-parallelism",
|
|
118
119
|
"test:watch": "vitest",
|
|
119
|
-
"typecheck": "
|
|
120
|
+
"typecheck": "tsc --noEmit",
|
|
120
121
|
"lint": "pnpm run typecheck",
|
|
121
122
|
"check:bundle-size": "tsx ./scripts/check-bundle-size.ts",
|
|
122
123
|
"clean": "rm -rf dist .tsbuildinfo",
|