sfiledl 2.0.0 → 2.0.1
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/build/lib.cjs +94 -117
- package/build/lib.cjs.map +1 -14
- package/build/lib.d.ts +23 -31
- package/build/lib.mjs +87 -118
- package/build/lib.mjs.map +1 -12
- package/changelog +593 -0
- package/license +661 -0
- package/package.json +6 -3
- package/readme +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sfiledl",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Implement and automate downloading of any file from sfile.co with javascripts library, written entirely in typescripts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./build/lib.cjs",
|
|
@@ -8,7 +8,10 @@
|
|
|
8
8
|
"types": "./build/lib.d.ts",
|
|
9
9
|
"license": "AGPL-3.0-only",
|
|
10
10
|
"files": [
|
|
11
|
-
"build"
|
|
11
|
+
"build",
|
|
12
|
+
"readme",
|
|
13
|
+
"license",
|
|
14
|
+
"changelog"
|
|
12
15
|
],
|
|
13
16
|
"sideEffects": false,
|
|
14
17
|
"engines": {
|
|
@@ -41,7 +44,7 @@
|
|
|
41
44
|
"clean-code": "rmcm -l js -i -c 0 -r ./lib --verbose && bun run format",
|
|
42
45
|
"rebuild": "bun run clean && bun run clean-code && bun run build && bun run format:build",
|
|
43
46
|
"test": "bun test",
|
|
44
|
-
"prepublishOnly": "bun run
|
|
47
|
+
"prepublishOnly": "bun run build && chmod +x build/lib.mjs",
|
|
45
48
|
"prepare": "husky install || true",
|
|
46
49
|
"install:playwright": "bunx playwright install chromium"
|
|
47
50
|
},
|
package/readme
ADDED