fullscan 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 ADDED
@@ -0,0 +1,7 @@
1
+ # fullscan
2
+
3
+ Alias of [`@fulldotdev/scan`](https://www.npmjs.com/package/@fulldotdev/scan), the whole-site website scanner.
4
+
5
+ ```sh
6
+ npx fullscan https://example.com
7
+ ```
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import "@fulldotdev/scan/cli";
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "fullscan",
3
+ "version": "0.1.0",
4
+ "description": "Alias of @fulldotdev/scan: whole-site website scanner with the fullscan command.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "github:fulldotdev/scan"
10
+ },
11
+ "homepage": "https://scan.full.dev",
12
+ "bin": {
13
+ "fullscan": "./bin/fullscan.js"
14
+ },
15
+ "files": [
16
+ "bin"
17
+ ],
18
+ "engines": {
19
+ "node": ">=22"
20
+ },
21
+ "dependencies": {
22
+ "@fulldotdev/scan": "0.1.0"
23
+ }
24
+ }