ignotum 0.0.1 → 0.0.2

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 (2) hide show
  1. package/dist/cli/bin.mjs +1 -1
  2. package/package.json +17 -18
package/dist/cli/bin.mjs CHANGED
@@ -13,7 +13,7 @@ import { SqlClient, SqlSchema } from "effect/unstable/sql";
13
13
  import { customAlphabet, nanoid } from "nanoid";
14
14
  import { ChildProcess, ChildProcessSpawner } from "effect/unstable/process";
15
15
  //#region package.json
16
- var version = "0.0.1";
16
+ var version = "0.0.2";
17
17
  //#endregion
18
18
  //#region ../contracts/dist/value-Briqf-Ua.js
19
19
  const TransportValueSchema = Schema.suspend(() => Schema.Union([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ignotum",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Ignotum is an opinionated TypeScript application cloud.",
5
5
  "author": "Johannes Schießl",
6
6
  "repository": {
@@ -58,27 +58,26 @@
58
58
  "access": "public",
59
59
  "registry": "https://registry.npmjs.org/"
60
60
  },
61
- "scripts": {
62
- "build": "vp pack",
63
- "prepack": "vp run -t build",
64
- "typecheck": "tsc -p tsconfig.json"
65
- },
66
61
  "dependencies": {
67
- "@effect/platform-node": "catalog:",
68
- "@effect/sql-sqlite-node": "catalog:",
69
- "@prefresh/vite": "catalog:",
70
- "@tailwindcss/vite": "catalog:",
71
- "effect": "catalog:",
72
- "nanoid": "catalog:",
73
- "preact": "catalog:",
74
- "tailwindcss": "catalog:",
75
- "vite": "catalog:"
62
+ "@effect/platform-node": "4.0.0-rc.111",
63
+ "@effect/sql-sqlite-node": "4.0.0-rc.111",
64
+ "@prefresh/vite": "3.0.1",
65
+ "@tailwindcss/vite": "4.3.3",
66
+ "effect": "4.0.0-rc.111",
67
+ "nanoid": "6.0.1",
68
+ "preact": "10.29.8",
69
+ "tailwindcss": "4.3.3",
70
+ "vite": "8.2.2"
76
71
  },
77
72
  "devDependencies": {
78
- "@ignotum/contracts": "workspace:*",
79
- "@ignotum/runtime": "workspace:*"
73
+ "@ignotum/contracts": "0.0.0",
74
+ "@ignotum/runtime": "0.0.0"
80
75
  },
81
76
  "engines": {
82
77
  "node": ">=22.18.0"
78
+ },
79
+ "scripts": {
80
+ "build": "vp pack",
81
+ "typecheck": "tsc -p tsconfig.json"
83
82
  }
84
- }
83
+ }