@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.
- package/package.json +7 -3
- package/server.js +1 -1
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forwardimpact/svcmemory",
|
|
3
|
-
"version": "0.1.
|
|
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": "
|
|
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