We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40cf8df commit 13a59d2Copy full SHA for 13a59d2
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@jsonic/path",
3
- "version": "1.1.0",
+ "version": "1.2.0",
4
"description": "This plugin allows the [Jsonic](https://jsonic.senecajs.org) JSON parser to determine the path to values.",
5
"main": "path.js",
6
"type": "commonjs",
path.d.ts
@@ -1,4 +1,4 @@
-import { Plugin } from '@jsonic/jsonic-next';
+import { Plugin } from 'jsonic';
type PathOptions = {};
declare const Path: Plugin;
export { Path };
path.ts
/* Copyright (c) 2022-2024 Richard Rodger, MIT License */
-import { Jsonic, Plugin } from '@jsonic/jsonic-next'
+import { Jsonic, Plugin } from 'jsonic'
type PathOptions = {}
0 commit comments