is-what 4.1.10-0 → 4.1.10-2

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -2,15 +2,21 @@
2
2
  "name": "is-what",
3
3
  "sideEffects": false,
4
4
  "type": "module",
5
- "version": "4.1.10-0",
5
+ "version": "4.1.10-2",
6
6
  "description": "JS type check (TypeScript supported) functions like `isPlainObject() isArray()` etc. A simple & small integration.",
7
- "module": "./dist/index.js",
8
- "main": "./dist/cjs/index.js",
9
7
  "types": "./dist/index.d.ts",
8
+ "module": "./dist/index.js",
9
+ "main": "./dist/index.js",
10
10
  "exports": {
11
11
  ".": {
12
- "import": "./dist/index.js",
13
- "require": "./dist/cjs/index.js"
12
+ "require": {
13
+ "types": "./dist/cjs/index.d.ts",
14
+ "default": "./dist/cjs/index.js"
15
+ },
16
+ "import": {
17
+ "types": "./dist/index.d.ts",
18
+ "default": "./dist/index.js"
19
+ }
14
20
  }
15
21
  },
16
22
  "files": [
@@ -1,3 +0,0 @@
1
- {
2
- "type": "commonjs"
3
- }