jcampconverter 9.6.1 → 9.6.2
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/jcampconverter.d.ts +6 -6
- package/package.json +13 -13
package/jcampconverter.d.ts
CHANGED
|
@@ -60,9 +60,9 @@ import { Logger } from 'cheminfo-types';
|
|
|
60
60
|
* @typedef {object} Entry@typedef {object} Entry
|
|
61
61
|
* @property {Spectrum[]} spectra
|
|
62
62
|
* @property {Ntuples} ntuples
|
|
63
|
-
* @property {
|
|
64
|
-
* @property {
|
|
65
|
-
* @property {
|
|
63
|
+
* @property {Record<String, string | string[] | number | number[] | boolean | boolean[] | undefined>} meta
|
|
64
|
+
* @property {Record<String, string | string[] | number | number[] | boolean | boolean[] | undefined>} info
|
|
65
|
+
* @property {Record<String, string | string[] | number | number[] | boolean | boolean[] | undefined>} tmp
|
|
66
66
|
* @property {string} [title]
|
|
67
67
|
* @property {string} [dataType]
|
|
68
68
|
* @property {string} [dataClass]
|
|
@@ -182,9 +182,9 @@ declare type CreateTreeOptions = {
|
|
|
182
182
|
declare type Entry = {
|
|
183
183
|
spectra: Spectrum[];
|
|
184
184
|
ntuples: Ntuples;
|
|
185
|
-
meta:
|
|
186
|
-
info:
|
|
187
|
-
tmp:
|
|
185
|
+
meta: Record<string, string | string[] | number | number[] | boolean | boolean[] | undefined>;
|
|
186
|
+
info: Record<string, string | string[] | number | number[] | boolean | boolean[] | undefined>;
|
|
187
|
+
tmp: Record<string, string | string[] | number | number[] | boolean | boolean[] | undefined>;
|
|
188
188
|
title?: string | undefined;
|
|
189
189
|
dataType?: string | undefined;
|
|
190
190
|
dataClass?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jcampconverter",
|
|
3
|
-
"version": "9.6.
|
|
3
|
+
"version": "9.6.2",
|
|
4
4
|
"description": "Parse and convert JCAMP data",
|
|
5
5
|
"types": "jcampconverter.d.ts",
|
|
6
6
|
"main": "jcampconverter.cjs",
|
|
@@ -50,26 +50,26 @@
|
|
|
50
50
|
"url": "https://github.com/cheminfo/nmrium/issues/new?title=%5Bjcampconverter%5D"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@microsoft/api-extractor": "^7.
|
|
54
|
-
"@types/jest": "^29.5.
|
|
53
|
+
"@microsoft/api-extractor": "^7.42.3",
|
|
54
|
+
"@types/jest": "^29.5.12",
|
|
55
55
|
"@types/pino": "^7.0.5",
|
|
56
|
-
"@vitest/coverage-v8": "^1.1
|
|
56
|
+
"@vitest/coverage-v8": "^1.3.1",
|
|
57
57
|
"benchmark": "^2.1.4",
|
|
58
|
-
"c8": "^9.
|
|
58
|
+
"c8": "^9.1.0",
|
|
59
59
|
"cheminfo-build": "^1.2.0",
|
|
60
|
-
"esbuild": "^0.
|
|
61
|
-
"eslint": "^8.
|
|
62
|
-
"eslint-config-cheminfo-typescript": "^12.
|
|
60
|
+
"esbuild": "^0.20.1",
|
|
61
|
+
"eslint": "^8.57.0",
|
|
62
|
+
"eslint-config-cheminfo-typescript": "^12.2.0",
|
|
63
63
|
"esm": "^3.2.25",
|
|
64
64
|
"fifo-logger": "^0.6.1",
|
|
65
65
|
"jest-matcher-deep-close-to": "^3.0.2",
|
|
66
66
|
"jscpd": "^3.5.10",
|
|
67
|
-
"ml-spectra-processing": "^
|
|
68
|
-
"openchemlib": "^8.
|
|
69
|
-
"prettier": "^3.
|
|
67
|
+
"ml-spectra-processing": "^14.2.0",
|
|
68
|
+
"openchemlib": "^8.9.0",
|
|
69
|
+
"prettier": "^3.2.5",
|
|
70
70
|
"rimraf": "^5.0.5",
|
|
71
|
-
"typescript": "^5.
|
|
72
|
-
"vitest": "^1.1
|
|
71
|
+
"typescript": "^5.4.2",
|
|
72
|
+
"vitest": "^1.3.1"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
75
|
"cheminfo-types": "^1.7.2",
|