@hamak/filesystem-server-api 0.5.2 → 0.5.5

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.
@@ -4,7 +4,7 @@
4
4
  * Main service interface for filesystem server operations
5
5
  */
6
6
  import { Router } from 'express';
7
- import { IWorkspaceManager } from './IWorkspaceManager';
7
+ import { IWorkspaceManager } from './IWorkspaceManager.js';
8
8
  export interface IFileSystemService {
9
9
  /**
10
10
  * Get the workspace manager instance
package/dist/index.d.ts CHANGED
@@ -3,8 +3,8 @@
3
3
  *
4
4
  * Backend filesystem server API - Public interfaces and types
5
5
  */
6
- export * from './api/IWorkspaceManager';
7
- export * from './api/IFileSystemService';
8
- export * from './api/tokens';
9
- export * from './types';
6
+ export * from './api/IWorkspaceManager.js';
7
+ export * from './api/IFileSystemService.js';
8
+ export * from './api/tokens.js';
9
+ export * from './types/index.js';
10
10
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -4,8 +4,8 @@
4
4
  * Backend filesystem server API - Public interfaces and types
5
5
  */
6
6
  // Export API interfaces
7
- export * from './api/IWorkspaceManager';
8
- export * from './api/IFileSystemService';
9
- export * from './api/tokens';
7
+ export * from './api/IWorkspaceManager.js';
8
+ export * from './api/IFileSystemService.js';
9
+ export * from './api/tokens.js';
10
10
  // Export types
11
- export * from './types';
11
+ export * from './types/index.js';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Types barrel export
3
3
  */
4
- export * from './workspace-config';
5
- export * from './server-config';
4
+ export * from './workspace-config.js';
5
+ export * from './server-config.js';
6
6
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
1
  /**
2
2
  * Types barrel export
3
3
  */
4
- export * from './workspace-config';
5
- export * from './server-config';
4
+ export * from './workspace-config.js';
5
+ export * from './server-config.js';
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * FileSystem Server Configuration Types
3
3
  */
4
- import { WorkspacesMap } from './workspace-config';
4
+ import { WorkspacesMap } from './workspace-config.js';
5
5
  /**
6
6
  * Configuration for the FileSystem Server
7
7
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hamak/filesystem-server-api",
3
- "version": "0.5.2",
3
+ "version": "0.5.5",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "FileSystem Server API - Backend filesystem server interfaces and contracts",
@@ -19,7 +19,7 @@
19
19
  "access": "public"
20
20
  },
21
21
  "scripts": {
22
- "build": "tsc -p tsconfig.json && tsc -p tsconfig.es2015.json",
22
+ "build": "tsc -p tsconfig.json && tsc -p tsconfig.es2015.json && node ../../../../scripts/fix-esm-extensions.mjs ./dist",
23
23
  "clean": "rm -rf dist",
24
24
  "test": "vitest run",
25
25
  "test:watch": "vitest"