@nanocollective/get-md 1.0.2 → 1.0.3

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@nanocollective/get-md",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Fast HTML to Markdown converter optimized for LLM consumption",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -29,12 +29,12 @@
29
29
  "test:all": "./scripts/test.sh",
30
30
  "test:ava": "ava",
31
31
  "test:ava:coverage": "c8 ava",
32
- "test:format": "prettier --check .",
32
+ "test:format": "biome check .",
33
33
  "test:types": "tsc --noEmit",
34
- "test:lint": "eslint .",
35
- "test:lint:fix": "eslint . --fix",
34
+ "test:lint": "biome lint .",
35
+ "test:lint:fix": "biome check --write .",
36
36
  "test:knip": "knip",
37
- "format": "prettier --write .",
37
+ "format": "biome format --write .",
38
38
  "prepublishOnly": "pnpm run build && pnpm run test:all"
39
39
  },
40
40
  "keywords": [
@@ -55,7 +55,7 @@
55
55
  "ajv": "^8.17.1",
56
56
  "cheerio": "^1.1.2",
57
57
  "commander": "^14.0.2",
58
- "jsdom": "^24.1.3",
58
+ "happy-dom-without-node": "^14.12.3",
59
59
  "turndown": "^7.2.2",
60
60
  "turndown-plugin-gfm": "^1.0.2"
61
61
  },
@@ -66,21 +66,15 @@
66
66
  "license": "MIT",
67
67
  "devDependencies": {
68
68
  "@ava/typescript": "^6.0.0",
69
- "@eslint/js": "^9.38.0",
69
+ "@biomejs/biome": "^2.3.9",
70
70
  "@types/jsdom": "^27.0.0",
71
71
  "@types/node": "^24.9.1",
72
72
  "@types/turndown": "^5.0.6",
73
- "@typescript-eslint/eslint-plugin": "^8.46.2",
74
- "@typescript-eslint/parser": "^8.46.2",
75
73
  "ava": "^6.4.1",
76
74
  "c8": "^10.1.3",
77
- "eslint": "^9.38.0",
78
- "globals": "^16.4.0",
79
75
  "knip": "^5.66.3",
80
- "prettier": "^3.6.2",
81
76
  "tsx": "^4.20.6",
82
- "typescript": "^5.9.3",
83
- "typescript-eslint": "^8.46.2"
77
+ "typescript": "^5.9.3"
84
78
  },
85
79
  "ava": {
86
80
  "extensions": {