-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 900 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 900 Bytes
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
{
"name": "hiroba-js",
"version": "2.4.0",
"description": "Donderhiroba for js.",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
}
},
"scripts": {
"build": "npm run build:cjs & npm run build:esm",
"build:cjs": "tsc --p ./cjs/tsconfig.json",
"build:esm": "tsc --p ./esm/tsconfig.json"
},
"keywords": [],
"author": "hotsixman",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hotsixman/hiroba.js"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"fs": "^0.0.1-security",
"jimp": "^1.6.0",
"node-html-parser": "^7.0.1",
"npm": "^11.4.2",
"set-cookie-parser": "^2.7.1"
},
"devDependencies": {
"@types/set-cookie-parser": "^2.4.10",
"ts-loader": "^9.5.1",
"typescript": "^5.2.2"
}
}