fandomscraper
Version:
A package to scrap fandoms wikis characters page. Only scraps the characters info section and the list of all repertoried characters.
66 lines (65 loc) • 1.67 kB
JSON
{
"name": "fandomscraper",
"version": "1.0.9",
"type": "module",
"description": "A package to scrap fandoms wikis characters page. Only scraps the characters info section and the list of all repertoried characters.",
"typings": "./dist/types/globals.d.ts",
"files": [
"dist",
"wikia"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./wikia/*": "./wikia/*"
},
"module": "./dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "tsup index.ts --format esm --clean --treeshake",
"postbuild": "xcopy /E /I wikia dist\\wikia",
"prepublishOnly": "npm run build",
"test": "npx jest --config=jest.config.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dilaouid/FandomScraper.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"fandom",
"wikia",
"wiki",
"scraper",
"characters",
"info",
"list"
],
"author": "dilaouid",
"license": "GPLv3",
"private": false,
"bugs": {
"url": "https://github.com/dilaouid/FandomScraper/issues"
},
"homepage": "https://github.com/dilaouid/FandomScraper#readme",
"dependencies": {
"jsdom": "^22.1.0"
},
"devDependencies": {
"@types/chai": "^4.3.20",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"chai": "^4.5.0",
"jest": "^29.7.0",
"rimraf": "^5.0.10",
"ts-jest": "^29.2.5",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
}
}