@peron_js/web-cli 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.
- package/README.md +20 -0
- package/dist/index.js +507 -0
- package/package.json +40 -0
package/package.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@peron_js/web-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A CLI to search and fetch the web",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"bin": {
|
|
10
|
+
"web": "./dist/index.js"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=18"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"start": "bun run src/index.ts",
|
|
20
|
+
"build": "bun build src/index.ts --target node --outdir dist --minify",
|
|
21
|
+
"prepublishOnly": "bun run build",
|
|
22
|
+
"format": "biome format --write .",
|
|
23
|
+
"lint": "biome check .",
|
|
24
|
+
"typecheck": "tsc --noEmit"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@biomejs/biome": "^2.5.0",
|
|
28
|
+
"@types/bun": "latest",
|
|
29
|
+
"@types/turndown": "^5.0.6",
|
|
30
|
+
"citty": "^0.2.2",
|
|
31
|
+
"defuddle": "^0.18.1",
|
|
32
|
+
"linkedom": "^0.18.12",
|
|
33
|
+
"mathml-to-latex": "^1.8.0",
|
|
34
|
+
"turndown": "^7.2.4",
|
|
35
|
+
"undici": "^8.4.1"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"typescript": "^5"
|
|
39
|
+
}
|
|
40
|
+
}
|