openwork-server 0.13.3 → 0.13.4

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/README.md CHANGED
@@ -99,6 +99,7 @@ Sandbox advertisement (for capability discovery):
99
99
  - `DELETE /workspace/:id/commands/:name`
100
100
  - `GET /workspace/:id/audit`
101
101
  - `GET /workspace/:id/export`
102
+ - `POST /workspace/:id/import/preview`
102
103
  - `POST /workspace/:id/import`
103
104
 
104
105
  Token management (host/owner auth):
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openwork-server",
3
- "version": "0.13.3",
3
+ "version": "0.13.4",
4
4
  "description": "Filesystem-backed API for OpenWork remote clients",
5
5
  "type": "module",
6
6
  "bin": {
@@ -31,15 +31,20 @@
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
+ "exports": {
35
+ ".": "./src/index.ts"
36
+ },
34
37
  "dependencies": {
38
+ "better-sqlite3": "^11.10.0",
35
39
  "jsonc-parser": "^3.2.1",
36
40
  "minimatch": "^10.0.1",
37
41
  "yaml": "^2.6.1",
38
42
  "zod": "^4.3.6"
39
43
  },
40
44
  "devDependencies": {
41
- "@types/node": "^22.10.2",
45
+ "@types/better-sqlite3": "^7.6.13",
42
46
  "@types/minimatch": "^5.1.2",
47
+ "@types/node": "^22.10.2",
43
48
  "bun-types": "^1.3.6",
44
49
  "typescript": "^5.6.3"
45
50
  },