-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 1.81 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "nekobocc",
"version": "1.4.0",
"description": "A simple and lightweight Nekopoi scraper.",
"type": "commonjs",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
},
"default": "./dist/cjs/index.js"
}
},
"files": [
"dist"
],
"keywords": [
"scraper",
"nekopoi",
"downloader",
"api",
"hentai"
],
"scripts": {
"build": "npm run clean && npm run build:esm && npm run build:cjs && tsconfig-to-dual-package",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"clean": "rimraf dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --ignore-path .gitignore --config .prettierrc --write \"**/*.ts\"",
"prepublishOnly": "npm run lint:fix && npm run format && npm run build",
"test": "ts-node-esm src/index.ts"
},
"author": "SlavyanDesu",
"license": "MIT",
"homepage": "https://github.com/SlavyanDesu/NekoBocc#readme",
"dependencies": {
"axios": "^1.2.2",
"cheerio": "^1.0.0-rc.12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SlavyanDesu/NekoBocc.git"
},
"devDependencies": {
"@types/cheerio": "^0.22.31",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.3",
"rimraf": "^4.1.1",
"ts-node": "^10.9.1",
"tsconfig-to-dual-package": "^1.1.0",
"typescript": "^5.0.2"
}
}