@xdsjs/dossierx-daemon 0.1.5 → 0.1.7

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/index.js +1 -1
  2. package/package.json +19 -27
package/dist/index.js CHANGED
@@ -820,7 +820,7 @@ function createTaskArchive(options) {
820
820
 
821
821
  // src/version.ts
822
822
  var DAEMON_PACKAGE_NAME = "@xdsjs/dossierx-daemon";
823
- var DAEMON_VERSION = "0.1.5";
823
+ var DAEMON_VERSION = "0.1.7";
824
824
 
825
825
  // src/local-api/server.ts
826
826
  var DEFAULT_MAX_FILE_BYTES = 5 * 1024 * 1024;
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@xdsjs/dossierx-daemon",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "type": "module",
5
- "main": "./src/index.ts",
6
- "types": "./src/index.ts",
5
+ "main": "./dist/index.js",
6
+ "types": "./dist/index.d.ts",
7
7
  "exports": {
8
8
  ".": {
9
- "types": "./src/index.ts",
10
- "import": "./src/index.ts"
9
+ "types": "./dist/index.d.ts",
10
+ "import": "./dist/index.js"
11
11
  }
12
12
  },
13
13
  "bin": {
@@ -17,36 +17,21 @@
17
17
  "dist"
18
18
  ],
19
19
  "publishConfig": {
20
- "access": "public",
21
- "main": "./dist/index.js",
22
- "types": "./dist/index.d.ts",
23
- "exports": {
24
- ".": {
25
- "types": "./dist/index.d.ts",
26
- "import": "./dist/index.js"
27
- }
28
- }
20
+ "access": "public"
29
21
  },
30
22
  "engines": {
31
23
  "node": ">=20"
32
24
  },
33
- "scripts": {
34
- "dev": "tsx src/index.ts",
35
- "build": "tsup src/index.ts --format esm --dts --out-dir dist",
36
- "typecheck": "tsc --noEmit",
37
- "test": "vitest run",
38
- "lint": "tsc --noEmit"
39
- },
40
25
  "dependencies": {
41
26
  "@supabase/supabase-js": "^2.0.0",
42
- "@xdsjs/dossier-financial-reports": "workspace:^",
43
- "@xdsjs/dossierx-git-mirror": "workspace:^",
44
- "@xdsjs/dossierx-shared": "workspace:^",
45
- "@xdsjs/dossierx-workspace": "workspace:^",
46
27
  "commander": "^14.0.0",
47
28
  "execa": "^9.0.0",
48
29
  "pino": "^10.0.0",
49
- "zod": "^4.0.0"
30
+ "zod": "^4.0.0",
31
+ "@xdsjs/dossier-financial-reports": "^0.1.2",
32
+ "@xdsjs/dossierx-git-mirror": "^0.1.2",
33
+ "@xdsjs/dossierx-shared": "^0.1.3",
34
+ "@xdsjs/dossierx-workspace": "^0.1.1"
50
35
  },
51
36
  "devDependencies": {
52
37
  "@types/node": "^24.0.0",
@@ -54,5 +39,12 @@
54
39
  "tsup": "^8.0.0",
55
40
  "typescript": "^5.0.0",
56
41
  "vitest": "^3.0.0"
42
+ },
43
+ "scripts": {
44
+ "dev": "tsx src/index.ts",
45
+ "build": "tsup src/index.ts --format esm --dts --out-dir dist",
46
+ "typecheck": "tsc --noEmit",
47
+ "test": "vitest run",
48
+ "lint": "tsc --noEmit"
57
49
  }
58
- }
50
+ }