-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 1.15 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
{
"name": "hakuneko",
"title": "HakuNeko",
"description": "Manga, Anime & Novel Downloader",
"license": "Unlicense",
"homepage": "https://git.io/hakuneko",
"type": "module",
"workspaces": [
"web",
"app/nw",
"app/electron",
"docs"
],
"devDependencies": {
"@stylistic/eslint-plugin": "3.1.0",
"@types/chrome": "0.0.304",
"@types/jsdom": "21.1.7",
"@types/nw.js": "0.92.0",
"eslint": "9.20.1",
"eslint-plugin-tsdoc": "0.4.0",
"jsdom": "26.0.0",
"puppeteer-core": "24.2.1",
"tslib": "2.8.1",
"typescript": "5.7.3",
"typescript-eslint": "8.24.0",
"vite": "6.1.0",
"vitest": "3.0.5",
"vitest-mock-extended": "2.0.2"
},
"scripts": {
"check": "npm run check --workspaces",
"test": "npm run test --workspaces",
"test:e2e": "npm run build --workspaces && vitest run --config=test/vitest.e2e.js",
"test:websites": "npm run build --workspaces && vitest run --config=test/vitest.websites.js",
"npm:clean-install": "npm update --package-lock-only && npm ci"
}
}