-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.63 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.63 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
{
"name": "pornsearch",
"version": "2.4.3",
"description": "Easy way to search for porn content on internet",
"main": "dist/Pornsearch.js",
"types": "dist/Pornsearch.d.ts",
"exports": {
".": {
"types": "./dist/Pornsearch.d.ts",
"require": "./dist/Pornsearch.js",
"import": "./dist/Pornsearch.js"
}
},
"files": [
"dist/*"
],
"scripts": {
"build": "rimraf dist && tsc",
"watch": "tsc --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"porn",
"nsfw",
"pornhub",
"xvideos",
"sex",
"videos",
"video",
"redtube",
"boobs",
"gifs",
"gif"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LucasLeandro1204/pornsearch"
},
"engines": {
"node": ">=18.0.0"
},
"author": "LucasLeandro1204",
"license": "MIT",
"bugs": {
"url": "https://github.com/LucasLeandro1204/pornsearch/issues"
},
"homepage": "https://github.com/LucasLeandro1204/pornsearch#readme",
"dependencies": {
"cheerio": "^1.2.0",
"domhandler": "^5.0.3"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^10.0.0",
"jest": "^30.2.0",
"path": "^0.12.7",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}