-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "@otohime-site/parser",
"version": "24.1.1",
"license": "MIT",
"type": "module",
"types": "index.d.ts",
"homepage": "https://github.com/otohime-site/parser#readme",
"exports": {
".": "./index.js",
"./dx_intl": "./dx_intl/index.js",
"./dx_intl/*": "./dx_intl/*.js"
},
"scripts": {
"lint": "eslint",
"test": "jest --coverage",
"build": "rm -rf dist/ && tsc && cp README.md dist/ && jq 'del(.scripts.prepare)' package.json > dist/package.json",
"prepare": "husky install"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^28.8.3",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.2",
"ts-jest": "^29.1.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0"
},
"lint-staged": {
"*.js,*.ts": "eslint --cache --fix",
"*.{js,ts,css,md}": "prettier --write"
}
}