wsper-js 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/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "wsper-js",
3
+ "version": "0.1.0",
4
+ "description": "TypeScript library for building reusable ethical scrapers across multiple platforms.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "types": "./dist/index.d.ts"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "scripts": {
18
+ "build": "npm run build:prod",
19
+ "build:prod": "node script/build.mjs --mode production",
20
+ "build:production": "node script/build.mjs --mode production",
21
+ "build:dev": "node script/build.mjs --mode development",
22
+ "build:bytecode": "node script/build-bytecode.mjs",
23
+ "build:all": "npm run build:prod && npm run build:bytecode",
24
+ "start:bytecode": "node loader.js",
25
+ "typecheck": "tsc --noEmit",
26
+ "start": "node main.js",
27
+ "test": "vitest run",
28
+ "test:watch": "vitest",
29
+ "test:instagram": "vitest run tests/instagram",
30
+ "test:spotify": "vitest run tests/spotify",
31
+ "test:youtube": "vitest run tests/youtube",
32
+ "test:threads": "vitest run tests/threads",
33
+ "test:pinterest": "vitest run tests/pinterest",
34
+ "test:brat": "vitest run tests/brat"
35
+ },
36
+ "engines": {
37
+ "node": ">=18.0.0"
38
+ },
39
+ "devDependencies": {
40
+ "@types/fluent-ffmpeg": "^2.1.28",
41
+ "@types/node": "^25.9.1",
42
+ "javascript-obfuscator": "^4.1.1",
43
+ "tsup": "^8.5.0",
44
+ "typescript": "^5.8.3",
45
+ "vitest": "^4.1.7"
46
+ },
47
+ "dependencies": {
48
+ "@napi-rs/canvas": "^1.0.0",
49
+ "axios": "1.16.1",
50
+ "bytenode": "^1.5.7",
51
+ "canvas": "^3.2.3",
52
+ "cheerio": "1.2.0",
53
+ "fluent-ffmpeg": "^2.1.3",
54
+ "gif-encoder-2": "^1.0.5",
55
+ "p-queue": "^9.3.0",
56
+ "play-dl": "^1.9.7",
57
+ "sharp": "^0.34.5",
58
+ "zencf": "^2.0.3"
59
+ }
60
+ }