-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 952 Bytes
/
package.json
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
{
"name": "mangascrape",
"version": "1.3.2",
"description": "Scrape mangas from various sources",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/TzurS11/MangaScrape.git"
},
"scripts": {
"test": "nodemon src/test/test.ts",
"clean": "rimraf ./dist",
"build": "npm run clean && tsc",
"publish": "npm run build && npm publish"
},
"author": "TzurS11",
"license": "MIT",
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.5",
"@types/xml2js": "^0.4.14",
"typescript": "^5.7.3"
},
"dependencies": {
"axios": "^1.7.9",
"jsdom": "^26.0.0",
"xml2js": "^0.6.2"
},
"files": [
"dist",
"README.md",
"package.json",
"LICENSE"
]
}