janus-parse 1.0.1 → 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.
Files changed (2) hide show
  1. package/README.md +0 -23
  2. package/package.json +21 -1
package/README.md CHANGED
@@ -1,8 +1,5 @@
1
1
  # janus-parse
2
2
 
3
- [![npm version](https://shields.io)](https://npmjs.com)
4
- [![License: MIT](https://shields.io)](https://opensource.org)
5
-
6
3
  A lightweight, high-performance, isomorphic HTML text extractor and sanitizer built entirely in TypeScript. It safely strips out targeted layout elements or malicious scripts and returns clean, whitespace-normalized text.
7
4
 
8
5
  `janus-parse` provides dedicated entry points optimized for both Node.js environments and client-side browsers, ensuring minimal browser bundle overhead.
@@ -124,26 +121,6 @@ interface Config {
124
121
 
125
122
  ---
126
123
 
127
- ## Development & Testing
128
-
129
- If you want to contribute or modify this package, pull down the code and use the built-in development workflows:
130
-
131
- ```bash
132
- # Install dependencies
133
- pnpm install
134
-
135
- # Run the test suite via Vitest
136
- pnpm test
137
-
138
- # Check or fix formatting rules
139
- pnpm fmt
140
-
141
- # Compile the TypeScript project into the 'dist/' folder
142
- pnpm build
143
- ```
144
-
145
- ---
146
-
147
124
  ## License
148
125
 
149
126
  Distributed under the MIT License. See [LICENSE](LICENSE) for more information.
package/package.json CHANGED
@@ -1,12 +1,32 @@
1
1
  {
2
2
  "name": "janus-parse",
3
3
  "license": "MIT",
4
- "version": "1.0.1",
4
+ "version": "1.0.3",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
+ "keywords": [
8
+ "html-parser",
9
+ "text-extractor",
10
+ "html-to-text",
11
+ "html-sanitizer",
12
+ "isomorphic",
13
+ "typescript",
14
+ "dom-parser",
15
+ "clean-text",
16
+ "strip-tags",
17
+ "node-html-parser"
18
+ ],
7
19
  "files": [
8
20
  "dist"
9
21
  ],
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "https://github.com/Casneil/janus-parse"
25
+ },
26
+ "homepage": "https://github.com/Casneil/janus-parse",
27
+ "bugs": {
28
+ "url": "https://github.com/Casneil/janus-parse/issues"
29
+ },
10
30
  "type": "module",
11
31
  "prepack": "pnpm build",
12
32
  "dependencies": {