-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.63 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "mno-toolbox",
"version": "1.0.3",
"private": true,
"type": "module",
"main": "src/index.ts",
"scripts": {
"clean": "rm -rf node_modules .session/chrome-profile/",
"format": "oxfmt --config .oxfmtrc.json --check .",
"format:fix": "oxfmt --config .oxfmtrc.json .",
"gen-chapter-report": "tsx --env-file=./.env -r dotenv/config src/index.ts chapter",
"gen-checklist-report": "tsx --env-file=./.env -r dotenv/config src/index.ts checklist",
"lint": "oxlint --config .oxlintrc.json --type-aware",
"lint:fix": "oxlint --config .oxlintrc.json --type-aware --fix",
"preinstall": "npx only-allow pnpm",
"prepare": "node .husky/install.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest"
},
"author": "Chris Human <42072991+chrishuman0923@users.noreply.github.com>",
"license": "MIT",
"dependencies": {
"@t3-oss/env-core": "^0.13.11",
"cheerio": "^1.2.0",
"dayjs": "^1.11.20",
"puppeteer": "^24.43.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^25.8.0",
"@vitest/coverage-v8": "^4.1.6",
"domhandler": "^6.0.1",
"dotenv-cli": "^11.0.0",
"eslint-plugin-sort-destructure-keys": "^3.0.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"nodemon": "^3.1.14",
"oxfmt": "^0.49.0",
"oxlint": "^1.64.0",
"oxlint-tsgolint": "^0.22.1",
"tsx": "^4.22.0",
"typescript": "^6.0.3",
"vite": "^8.0.13",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=26.0.0"
},
"packageManager": "pnpm@11.2.2"
}