This repository has been archived by the owner on Jun 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
61 lines (61 loc) · 1.83 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
{
"name": "hikari-search",
"version": "0.0.1",
"description": "A collection of anime image search engine, based on Cloudflare Pages Function.",
"productName": "Hikari Anime Image Search",
"author": "Mix <32300164+mnixry@users.noreply.github.com>",
"repository": "github:mixmoe/HikariSearch",
"license": "LGPL-3.0",
"scripts": {
"lint": "eslint --ext .js,.ts,.vue ./",
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
"dev:worker": "wrangler pages dev ./public",
"dev:front": "quasar dev"
},
"dependencies": {
"@quasar/extras": "^1.0.0",
"@ssttevee/cfw-formdata-polyfill": "^0.2.1",
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.10",
"core-js": "^3.6.5",
"itty-router": "^2.4.10",
"itty-router-extras": "^0.4.2",
"lodash": "^4.17.21",
"quasar": "^2.0.0",
"schemastery": "^2.4.2",
"vue": "^3.0.0",
"vue-i18n": "^9.0.0",
"vue-router": "^4.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.13.14",
"@cloudflare/workers-types": "^3.4.0",
"@quasar/app": "^3.0.0",
"@types/itty-router-extras": "^0.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "^12.20.21",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-vue": "^7.0.0",
"prettier": "^2.5.1",
"wrangler": "^0.0.19"
},
"browserslist": [
"last 10 Chrome versions",
"last 10 Firefox versions",
"last 4 Edge versions",
"last 7 Safari versions",
"last 8 Android versions",
"last 8 ChromeAndroid versions",
"last 8 FirefoxAndroid versions",
"last 10 iOS versions",
"last 5 Opera versions"
],
"engines": {
"node": ">= 12.22.1",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}