We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c003da commit fe2c186Copy full SHA for fe2c186
package.json
@@ -2,11 +2,17 @@
2
"author": "Stefan Goessner",
3
"name": "jsonpath-plus",
4
"version": "5.0.2",
5
- "type": "commonjs",
+ "type": "module",
6
"main": "dist/index-node-cjs.js",
7
"exports": {
8
- "import": "./dist/index-node-esm.mjs",
9
- "require": "./dist/index-node-cjs.js"
+ ".": {
+ "browser": "./dist/index-browser-esm.js",
10
+ "umd": "./dist/index-browser-umd.js",
11
+ "import": "./dist/index-node-esm.mjs",
12
+ "require": "./dist/index-node-cjs.js"
13
+ },
14
+ "./package.json": "./package.json",
15
+ "./": "./"
16
},
17
"module": "dist/index-node-esm.mjs",
18
"browser": "dist/index-browser-esm.js",
0 commit comments