@zakodium/nmrium-core 0.1.1 → 0.1.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.
Files changed (1) hide show
  1. package/package.json +12 -9
package/package.json CHANGED
@@ -1,18 +1,22 @@
1
1
  {
2
2
  "name": "@zakodium/nmrium-core",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "The core of NMRium: types, state, state migration and plugin system.",
5
5
  "author": "Zakodium Sàrl",
6
6
  "license": "CC-BY-NC-SA-4.0",
7
7
  "type": "module",
8
- "exports": "./dist/nmrium-core.js",
8
+ "exports": {
9
+ ".": {
10
+ "nmrium-internal": "./src/index.ts",
11
+ "default": "./dist/nmrium-core.js"
12
+ }
13
+ },
9
14
  "files": [
10
15
  "dist"
11
16
  ],
12
17
  "scripts": {
13
- "api-extractor": "api-extractor run --local",
14
18
  "bundle": "node scripts/esbuild.js && npm run bundle-types",
15
- "bundle-types": "npm run tsc && npm run api-extractor",
19
+ "bundle-types": "npm run tsc && yarn g:api-extractor",
16
20
  "clean": "rimraf types dist coverage",
17
21
  "dev:eslint-fix": "eslint --cache --fix $(git diff --name-only --relative) --quiet",
18
22
  "prepack": "npm run clean && npm run bundle",
@@ -21,13 +25,12 @@
21
25
  "tsc": "tsc --project tsconfig.types.json"
22
26
  },
23
27
  "devDependencies": {
24
- "@microsoft/api-extractor": "^7.52.7",
25
28
  "@types/lodash.merge": "^4.6.9",
26
- "@types/node": "^22.15.16",
27
- "esbuild": "^0.25.4",
29
+ "@types/node": "^22.15.29",
30
+ "esbuild": "^0.25.5",
28
31
  "jest-matcher-deep-close-to": "^3.0.2",
29
32
  "rimraf": "^6.0.1",
30
- "vitest": "^3.1.3"
33
+ "vitest": "^3.1.4"
31
34
  },
32
35
  "dependencies": {
33
36
  "cheminfo-types": "^1.8.1",
@@ -37,7 +40,7 @@
37
40
  "lodash.merge": "^4.6.2",
38
41
  "ml-spectra-processing": "^14.12.0",
39
42
  "nmr-correlation": "^2.3.5",
40
- "nmr-processing": "^18.0.2"
43
+ "nmr-processing": "^18.1.0"
41
44
  },
42
45
  "volta": {
43
46
  "extends": "../../../package.json"