-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.01 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
{
"main": "index.js",
"name": "javit",
"repository": "https://github.com/XRadius/javit",
"type": "module",
"bin": {
"javit": "bin/cli.js"
},
"dependencies": {
"cheerio": "1.1.2",
"commander": "14.0.0",
"sanitize-filename": "1.6.3",
"sharp": "0.34.3"
},
"devDependencies": {
"@types/node": "24.2.1",
"eslint": "9.37.0",
"eslint-config-porcupine": "0.1.5",
"prettier": "3.6.2",
"prettier-plugin-jsdoc": "1.3.3",
"typescript": "5.9.2"
},
"engines": {
"node": ">= 22.0.0",
"npm": ">= 10.0.0"
},
"scripts": {
"eslint": "eslint --max-warnings 0",
"prepack": "tsc index.js --allowJs --declaration --emitDeclarationOnly --removeComments --strict --skipLibCheck",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"test": "npm run prettier:check && npm run tsc:build && npm run eslint && node --test",
"tsc:build": "tsc --project jsconfig.json",
"tsc:watch": "tsc --project jsconfig.json --watch"
}
}