janus-parse 1.0.1 → 1.0.2
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/README.md +0 -23
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
# janus-parse
|
|
2
2
|
|
|
3
|
-
[](https://npmjs.com)
|
|
4
|
-
[](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.
|