echokyt 0.0.4 → 0.1.0

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 +14 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "echokyt",
3
- "version": "0.0.4",
3
+ "version": "0.1.0",
4
4
  "description": "A lightweight text utility library",
5
5
  "main": "./dist/cjs/index.cjs",
6
6
  "module": "./dist/index.js",
@@ -105,7 +105,9 @@
105
105
  "bench": "npm run build && node benchmarks/bench.mjs",
106
106
  "release": "standard-version",
107
107
  "test": "jest",
108
- "prepublishOnly": "npm run test && npm run build"
108
+ "prepublishOnly": "npm run lint && npm run test && npm run build",
109
+ "preversion": "npm run lint && npm run test",
110
+ "postversion": "git push && git push --tags"
109
111
  },
110
112
  "repository": {
111
113
  "type": "git",
@@ -115,6 +117,14 @@
115
117
  "text",
116
118
  "string",
117
119
  "utilities",
120
+ "text-manipulation",
121
+ "sanitization",
122
+ "parsing",
123
+ "mentions",
124
+ "hashtags",
125
+ "readability",
126
+ "llm",
127
+ "prompt-hygiene",
118
128
  "slugify",
119
129
  "truncate",
120
130
  "reading-time",
@@ -136,8 +146,8 @@
136
146
  "homepage": "https://github.com/nyigoro/EchoKit#readme",
137
147
  "devDependencies": {
138
148
  "@types/jest": "^29.0.0",
139
- "@typescript-eslint/eslint-plugin": "^7.18.0",
140
- "@typescript-eslint/parser": "^7.18.0",
149
+ "@typescript-eslint/eslint-plugin": "^8.55.0",
150
+ "@typescript-eslint/parser": "^8.55.0",
141
151
  "eslint": "^8.57.0",
142
152
  "jest": "^29.0.0",
143
153
  "prettier": "^3.2.5",