@esposter/shared 2.13.1 → 2.15.0

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +511 -138
  2. package/dist/index.js +5672 -19
  3. package/package.json +13 -5
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@esposter/shared",
3
- "version": "2.13.1",
4
3
  "description": "A library that contains shared typescript code.",
4
+ "version": "2.15.0",
5
5
  "type": "module",
6
6
  "homepage": "https://github.com/Esposter/Esposter/blob/main/packages/shared#readme",
7
7
  "license": "Apache-2.0",
@@ -23,12 +23,20 @@
23
23
  },
24
24
  "scripts": {
25
25
  "build": "pnpm export:gen && rolldown --config rolldown.config.ts",
26
- "test": "NODE_OPTIONS=--max-old-space-size=8192 vitest",
27
26
  "coverage": "vitest run --coverage",
27
+ "export:gen": "ctix build --config ../configuration/.ctirc-ts",
28
28
  "lint": "oxlint && eslint .",
29
29
  "lint:fix": "oxlint --fix && eslint --fix .",
30
- "typecheck": "tsc",
31
- "export:gen": "ctix build --config ../configuration/.ctirc-ts"
30
+ "test": "vitest",
31
+ "typecheck": "tsc"
32
32
  },
33
- "gitHead": "ccdc9fba1e2852a3a7f058c2dc73b1971c20d684"
33
+ "dependencies": {
34
+ "@vueuse/core": "^13.9.0",
35
+ "vue": "^3.5.22",
36
+ "zod": "^4.1.12"
37
+ },
38
+ "devDependencies": {
39
+ "@azure/data-tables": "^13.3.1"
40
+ },
41
+ "gitHead": "0c6005e4b29541494e5879c73ab985a94168c5c9"
34
42
  }