htm-transform 0.1.3 → 0.1.5

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/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "htm-transform",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Transform htm tagged templates into h function calls using acorn",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
- "types": "index.js",
7
+ "types": "index.d.ts",
8
8
  "exports": {
9
9
  ".": {
10
- "types": "./index.js",
10
+ "types": "./index.d.ts",
11
11
  "default": "./index.js"
12
12
  }
13
13
  },
14
14
  "scripts": {
15
15
  "test": "node --test test.js",
16
- "test:watch": "node --test --watch test.js"
16
+ "dts": "tsc"
17
17
  },
18
18
  "keywords": [
19
19
  "htm",
@@ -26,7 +26,10 @@
26
26
  "license": "MPL-2.0",
27
27
  "dependencies": {
28
28
  "acorn": "^8.11.3",
29
- "acorn-walk": "^8.3.2",
29
+ "astravel": "^0.6.1",
30
30
  "astring": "^1.8.6"
31
+ },
32
+ "devDependencies": {
33
+ "typescript": "^5.9.3"
31
34
  }
32
35
  }