-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.16 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "nb-scraper",
"version": "1.2.3",
"description": "Community scraper library by Newbie Scrape",
"main": "dist/cjs/index.js",
"module": "dist/index.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/index.mjs",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run clean && npm run build:types && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.esm.json && mv dist/esm/index.js dist/index.mjs",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.types.json",
"dev": "tsx watch app/index.ts",
"test": "jest --passWithNoTests",
"lint": "eslint app/**/*.ts",
"lint:fix": "eslint app/**/*.ts --fix",
"docs": "typedoc app/index.ts --out docs",
"docs:serve": "typedoc --out docs src/index.ts --watch",
"prepare": "npm run build",
"clean": "rimraf dist"
},
"keywords": [
"scraper",
"typescript",
"nb-team",
"community",
"downloader",
"ai",
"scrape-resource",
"social-media",
"api"
],
"author": "NB Team",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/Chakszzz/NB-Scraper"
},
"bugs": {
"url": "https://github.com/Chakszzz/NB-Scraper/issues"
},
"homepage": "https://nb-scraper.js.org",
"devDependencies": {
"@types/cheerio": "^0.22.32",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/qs": "latest",
"@types/crypto-js": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"tsx": "^4.0.0",
"typedoc": "latest",
"typescript": "^5.0.0",
"rimraf": "^5.0.5"
},
"dependencies": {
"cloudscraper": "^4.6.0",
"axios": "^1.6.0",
"path": "^0.12.7",
"cheerio": "^1.0.0-rc.12",
"form-data": "latest",
"fs": "latest",
"qs": "latest",
"crypto-js": "^4.2.0",
"file-type": "^19.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}