@forwardimpact/svcmemory 0.1.84 → 0.1.87

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/package.json +7 -3
  2. package/server.js +1 -1
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@forwardimpact/svcmemory",
3
- "version": "0.1.84",
3
+ "version": "0.1.87",
4
4
  "description": "Memory service for managing transient resources and memory windows",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "scripts": {
8
8
  "dev": "node --watch server.js",
9
- "start": "npx download && node server.js",
10
- "test": "node --test test/*.test.js"
9
+ "start": "bunx download && bun server.js",
10
+ "test": "bun run node --test test/*.test.js"
11
11
  },
12
12
  "dependencies": {
13
13
  "@forwardimpact/libconfig": "^0.1.58",
@@ -18,5 +18,9 @@
18
18
  },
19
19
  "devDependencies": {
20
20
  "@forwardimpact/libharness": "^0.1.5"
21
+ },
22
+ "engines": {
23
+ "bun": ">=1.2.0",
24
+ "node": ">=18.0.0"
21
25
  }
22
26
  }
package/server.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env bun
2
2
  import { Server } from "@forwardimpact/librpc";
3
3
  import { createServiceConfig } from "@forwardimpact/libconfig";
4
4
  import { createStorage } from "@forwardimpact/libstorage";