@almadar/workspace 0.11.6 → 0.11.8
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/internal/path-layout.d.ts +10 -10
- package/package.json +8 -6
|
@@ -11,16 +11,16 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/** Single source of truth for workspace directory layout. */
|
|
13
13
|
export declare const WORKSPACE_LAYOUT: {
|
|
14
|
-
readonly ALMADAR_DIR:
|
|
15
|
-
readonly ORBITALS_DIR:
|
|
16
|
-
readonly SESSIONS_DIR:
|
|
17
|
-
readonly COORDINATOR_DIR:
|
|
18
|
-
readonly TRACE_FILE:
|
|
19
|
-
readonly SCHEMA_FILE:
|
|
20
|
-
readonly COMPILED_DIR:
|
|
21
|
-
readonly APP_MARKER:
|
|
22
|
-
readonly USER_MEMORY:
|
|
23
|
-
readonly PROJECT_MEMORY:
|
|
14
|
+
readonly ALMADAR_DIR: '.almadar';
|
|
15
|
+
readonly ORBITALS_DIR: 'orbitals';
|
|
16
|
+
readonly SESSIONS_DIR: '.almadar/sessions';
|
|
17
|
+
readonly COORDINATOR_DIR: '.almadar/sessions/Coordinator';
|
|
18
|
+
readonly TRACE_FILE: '.almadar/trace.jsonl';
|
|
19
|
+
readonly SCHEMA_FILE: 'schema.orb';
|
|
20
|
+
readonly COMPILED_DIR: 'apps';
|
|
21
|
+
readonly APP_MARKER: '.almadar/app-marker.json';
|
|
22
|
+
readonly USER_MEMORY: '.almadar/user.orb';
|
|
23
|
+
readonly PROJECT_MEMORY: '.almadar/project.orb';
|
|
24
24
|
};
|
|
25
25
|
/** Logical orbital name → absolute `.orb` path. */
|
|
26
26
|
export declare function orbitalFile(workDir: string, name: string): string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/workspace",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.8",
|
|
4
4
|
"description": "Storage-agnostic workspace primitives shared by Almadar consumers. One service, six exports, hidden paths, single observer. See docs/Almadar_Workspace.md.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,19 +25,21 @@
|
|
|
25
25
|
},
|
|
26
26
|
"license": "BUSL-1.1",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@almadar/core": "^10.
|
|
29
|
-
"@almadar/llm": "^2.
|
|
28
|
+
"@almadar/core": "^10.34.0",
|
|
29
|
+
"@almadar/llm": "^2.36.0",
|
|
30
30
|
"dugite": "^3.2.2",
|
|
31
|
-
"typescript": "
|
|
31
|
+
"typescript": "npm:@typescript/typescript6@^6.0.2"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@almadar/eslint-plugin": "^2.
|
|
34
|
+
"@almadar/eslint-plugin": "^2.15.0",
|
|
35
35
|
"@types/node": "^22.0.0",
|
|
36
36
|
"@typescript-eslint/parser": "8.56.0",
|
|
37
37
|
"eslint": "^10.0.0",
|
|
38
38
|
"tsup": "^8.0.0",
|
|
39
39
|
"vitest": "^3.2.4",
|
|
40
|
-
"turbo": "^2.8.17"
|
|
40
|
+
"turbo": "^2.8.17",
|
|
41
|
+
"@typescript/native": "npm:typescript@^7.0.2",
|
|
42
|
+
"typescript": "npm:@typescript/typescript6@^6.0.2"
|
|
41
43
|
},
|
|
42
44
|
"scripts": {
|
|
43
45
|
"build": "tsup && tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src --skipLibCheck || true",
|