@jsonic/ini 0.4.0 → 0.5.0

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 (4) hide show
  1. package/ini.d.ts +1 -1
  2. package/ini.js +1 -1
  3. package/ini.ts +2 -2
  4. package/package.json +9 -9
package/ini.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Jsonic } from '@jsonic/jsonic-next';
1
+ import { Jsonic } from 'jsonic';
2
2
  type IniOptions = {};
3
3
  declare function Ini(jsonic: Jsonic, _options: IniOptions): void;
4
4
  export { Ini };
package/ini.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- /* Copyright (c) 2021-2023 Richard Rodger, MIT License */
2
+ /* Copyright (c) 2021-2025 Richard Rodger, MIT License */
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.Ini = Ini;
5
5
  const hoover_1 = require("@jsonic/hoover");
package/ini.ts CHANGED
@@ -1,7 +1,7 @@
1
- /* Copyright (c) 2021-2023 Richard Rodger, MIT License */
1
+ /* Copyright (c) 2021-2025 Richard Rodger, MIT License */
2
2
 
3
3
  // Import Jsonic types used by plugin.
4
- import { Jsonic, RuleSpec, NormAltSpec, Lex } from '@jsonic/jsonic-next'
4
+ import { Jsonic, RuleSpec, NormAltSpec, Lex } from 'jsonic'
5
5
  import { Hoover } from '@jsonic/hoover'
6
6
 
7
7
  // TODO: use a src folder
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsonic/ini",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "This plugin allows the [Jsonic](https://jsonic.senecajs.org) JSON parser to support INI syntax.",
5
5
  "main": "ini.js",
6
6
  "type": "commonjs",
@@ -42,16 +42,16 @@
42
42
  ],
43
43
  "devDependencies": {
44
44
  "@jsonic/doc": "^0.0.9",
45
- "@types/jest": "^29.5.14",
45
+ "@types/jest": "^30.0.0",
46
46
  "es-jest": "^2.1.0",
47
- "esbuild": "^0.24.0",
48
- "ini": "^5.0.0",
49
- "jest": "^29.7.0",
50
- "prettier": "^3.3.3",
51
- "typescript": "^5.6.3"
47
+ "esbuild": "^0.25.11",
48
+ "ini": "^6.0.0",
49
+ "jest": "^30.2.0",
50
+ "prettier": "^3.6.2",
51
+ "typescript": "^5.9.3"
52
52
  },
53
53
  "peerDependencies": {
54
- "@jsonic/hoover": ">=0.7.0",
55
- "jsonic": ">=2.15.2"
54
+ "@jsonic/hoover": ">=0",
55
+ "jsonic": ">=2"
56
56
  }
57
57
  }