quasiurl 1.0.0 → 1.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 (1) hide show
  1. package/package.json +6 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quasiurl",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "URL for templating",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -10,9 +10,10 @@
10
10
  "compile": "npx esbuild index.ts --bundle --outdir=dist --platform=neutral",
11
11
  "compile-tests": "npx esbuild tests.ts --bundle --outdir=dist --platform=neutral",
12
12
  "prepublishOnly": "npm run build",
13
- "preversion": "npx npm-run-all shape build test",
13
+ "preversion": "npx npm-run-all typecheck shape build test",
14
14
  "shape": "npx codeshape",
15
- "test": "node dist/tests.js"
15
+ "test": "node dist/tests.js",
16
+ "typecheck": "tsc --noEmit"
16
17
  },
17
18
  "author": "axtk",
18
19
  "license": "ISC",
@@ -25,6 +26,7 @@
25
26
  "template"
26
27
  ],
27
28
  "devDependencies": {
28
- "@types/node": "^24.0.4"
29
+ "@types/node": "^24.0.4",
30
+ "typescript": "^5.9.2"
29
31
  }
30
32
  }