quasiurl 1.1.13 → 1.1.15

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.
package/dist/index.cjs CHANGED
@@ -1,3 +1,5 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+
1
3
  /**
2
4
  * `URL`-like object applicable to partial URLs and URL templates.
3
5
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quasiurl",
3
- "version": "1.1.13",
3
+ "version": "1.1.15",
4
4
  "description": "URL-like object applicable to relative URLs and URL templates",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -19,10 +19,10 @@
19
19
  },
20
20
  "keywords": [
21
21
  "url",
22
- "partial url",
22
+ "relative url",
23
23
  "url template"
24
24
  ],
25
25
  "devDependencies": {
26
- "@types/node": "^24.0.4"
26
+ "@types/node": "^25.5.0"
27
27
  }
28
28
  }
package/tsconfig.json CHANGED
@@ -4,6 +4,7 @@
4
4
  "declaration": true,
5
5
  "emitDeclarationOnly": true,
6
6
  "lib": ["ESNext", "DOM"],
7
+ "types": ["node"],
7
8
  "target": "esnext",
8
9
  "outDir": "dist",
9
10
  "module": "nodenext",