@muze-nl/simplystore 0.6.0 → 0.6.1
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@muze-nl/simplystore",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"main": "src/server.mjs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"homepage": "https://github.com/simplyedit/simplystore#readme",
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@muze-nl/jsontag": "^0.9.1",
|
|
20
|
-
"
|
|
20
|
+
"jaqt": "^0.6.0",
|
|
21
21
|
"codemirror": "^6.0.1",
|
|
22
22
|
"express": "^4.18.1",
|
|
23
23
|
"json-pointer": "^0.6.2",
|
|
@@ -3,6 +3,7 @@ import {source, isChanged, getIndex} from './symbols.mjs'
|
|
|
3
3
|
import fastParse from './fastParse.mjs'
|
|
4
4
|
import {stringToSAB,resultSetStringify} from './fastStringify.mjs'
|
|
5
5
|
import writeFileAtomic from 'write-file-atomic'
|
|
6
|
+
import {_,from,not,anyOf,allOf,asc,desc,sum,count,avg,max,min} from 'jaqt'
|
|
6
7
|
|
|
7
8
|
let commands = {}
|
|
8
9
|
let resultSet = []
|
|
@@ -109,5 +110,4 @@ export default async function runCommand(commandStr, request) {
|
|
|
109
110
|
}
|
|
110
111
|
}
|
|
111
112
|
return response
|
|
112
|
-
}
|
|
113
|
-
|
|
113
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import JSONTag from '@muze-nl/jsontag'
|
|
2
2
|
import fastParse from './fastParse.mjs'
|
|
3
3
|
import {source, isProxy} from './symbols.mjs'
|
|
4
|
-
import {_,from,not,anyOf,allOf,asc,desc,sum,count,avg,max,min} from '
|
|
4
|
+
import {_,from,not,anyOf,allOf,asc,desc,sum,count,avg,max,min} from 'jaqt'
|
|
5
5
|
import pointer from 'json-pointer'
|
|
6
6
|
import {VM} from 'vm2'
|
|
7
7
|
import { memoryUsage } from 'node:process'
|