is-where 2.0.0 → 2.0.1

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 (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -41,6 +41,10 @@ isWebKit() // true / false
41
41
 
42
42
  ### List of functions
43
43
 
44
+ Features
45
+
46
+ - `isTouchSupported()`
47
+
44
48
  Environments
45
49
 
46
50
  - `isNode()`
package/package.json CHANGED
@@ -2,9 +2,12 @@
2
2
  "name": "is-where",
3
3
  "sideEffects": false,
4
4
  "type": "module",
5
- "version": "2.0.0",
5
+ "version": "2.0.1",
6
6
  "description": "JS environment check functions like `isWebkit() isSafari() isBrowser() isNode()` etc. A simple & small integration.",
7
- "exports": "./index.js",
7
+ "exports": {
8
+ ".": "./dist/index.js",
9
+ "./*": "./dist/*"
10
+ },
8
11
  "files": [
9
12
  "dist"
10
13
  ],
@@ -62,6 +65,7 @@
62
65
  "eslint-config-prettier": "^9.1.0",
63
66
  "np": "^10.0.5",
64
67
  "prettier": "^3.2.5",
68
+ "prettier-plugin-jsdoc": "^1.3.0",
65
69
  "typescript": "^5.4.5",
66
70
  "typescript-eslint": "^7.8.0",
67
71
  "vitest": "^1.5.3"