punctilio 0.3.0 → 0.4.14

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": "punctilio",
3
- "version": "0.3.0",
3
+ "version": "0.4.14",
4
4
  "description": "Smart typography transformations: curly quotes, em-dashes, en-dashes, and more",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -38,15 +38,23 @@
38
38
  "node": ">=18.0.0"
39
39
  },
40
40
  "devDependencies": {
41
+ "@eslint/js": "^9.39.2",
41
42
  "@types/jest": "^29.5.12",
42
43
  "@types/node": "^20.11.0",
44
+ "eslint": "^9.39.2",
45
+ "eslint-plugin-regexp": "^3.0.0",
43
46
  "jest": "^29.7.0",
47
+ "smartquotes": "2.3.2",
48
+ "smartypants": "0.2.2",
49
+ "tipograph": "0.7.4",
44
50
  "ts-jest": "^29.1.2",
45
- "typescript": "^5.3.3"
51
+ "typescript": "^5.3.3",
52
+ "typescript-eslint": "^8.54.0"
46
53
  },
47
54
  "scripts": {
48
55
  "build": "tsc",
49
56
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
57
+ "lint": "eslint src",
50
58
  "postinstall": "bash scripts/install-hooks.sh || true",
51
59
  "install-hooks": "bash scripts/install-hooks.sh"
52
60
  }