forked from manga-download/haruneko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.25 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "hakuneko",
"main": "main.js",
"title": "HakuNeko",
"description": "Manga, Anime & Novel Downloader",
"license": "Unlicense",
"homepage": "https://git.io/hakuneko",
"dependencies": {
"fs-extra": "9.0.1",
"postcss": "^8.2.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "latest",
"@rollup/plugin-node-resolve": "latest",
"@rollup/plugin-typescript": "latest",
"@sveltejs/svelte-virtual-list": "latest",
"@types/chrome": "latest",
"@types/fs-extra": "latest",
"@types/jest": "^26.0.18",
"@types/jsdom": "latest",
"@types/node": "^14.14.11",
"@types/react": "latest",
"@types/react-dom": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"@vue/compiler-sfc": "latest",
"carbon-components-svelte": "latest",
"eslint": "latest",
"jest": "latest",
"jest-junit": "latest",
"jest-mock-extended": "latest",
"jsdom": "latest",
"nw": "0.49.1-sdk",
"puppeteer-core": "latest",
"react": "latest",
"react-dom": "latest",
"rollup": "latest",
"rollup-plugin-copy": "latest",
"rollup-plugin-css-only": "latest",
"rollup-plugin-livereload": "latest",
"rollup-plugin-postcss": "latest",
"rollup-plugin-serve": "latest",
"rollup-plugin-svelte": "latest",
"rollup-plugin-terser": "latest",
"rollup-plugin-vue": "next",
"svelte": "latest",
"svelte-preprocess": "latest",
"ts-jest": "latest",
"ts-node": "latest",
"tslib": "latest",
"typescript": "latest",
"vue": "next",
"yargs": "latest"
},
"scripts": {
"lint": "eslint ./src/**/*.ts --ignore-path .gitignore",
"build:dev": "node ./build.app.js --url=http://localhost:5000",
"build:app": "node ./build.app.js --url=https://hakuneko.download/haruneko --modules && cd build.app && npm install --only=production",
"build:web": "rm -r -f build.web docs && rollup --config --compact && cp -r -f build.web/ docs/",
"test": "cd test && jest --color --config=jest.ts",
"test:engine": "cd test && jest --color --config=jest-engine.ts",
"test:frontend": "cd test && jest --color --config=jest-frontend.ts",
"serve": "rollup --config --watch",
"start": "npm run build:dev && nw ./build.app/"
}
}