-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.92 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
{
"name": "google-search-title-qualified",
"license": "MIT",
"author": "ncaq <ncaq@ncaq.net>",
"scripts": {
"archive": "git archive HEAD --output=google-search-title-qualified.tar.gz",
"build": "ts-node manifest.json.make.ts && esbuild --bundle --outdir=dist --target=firefox102 src/background/main.ts src/content/main.ts",
"fix": "FORCE_COLOR=1 run-p --print-label --continue-on-error fix:*",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "yarn lint:prettier --write",
"lint": "FORCE_COLOR=1 run-p --print-label --continue-on-error lint:*",
"lint:eslint": "eslint --ignore-path .gitignore --cache --ext .js --ext .jsx --ext .ts --ext .tsx .",
"lint:prettier": "prettier --ignore-path .gitignore --ignore-unknown --check '**/*.{js,jsx,ts,tsx,json,html,css,less,sass,scss,yml,yaml}'",
"lint:tsc": "tsc --noEmit",
"lint:web-ext": "web-ext lint",
"package": "rm -rf dist/ && yarn build && web-ext build",
"start": "web-ext run",
"watch": "ts-node manifest.json.make.ts && esbuild --bundle --watch --outdir=dist --target=firefox102 --sourcemap src/background/main.ts src/content/main.ts"
},
"dependencies": {
"async-sema": "^3.1.1",
"date-fns": "^2.29.3",
"dexie": "^3.2.3",
"encoding-japanese": "^2.0.0",
"events": "^3.3.0",
"fp-ts": "^2.13.1",
"io-ts": "^2.2.20",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@types/encoding-japanese": "^2.0.1",
"@types/node": "^18.11.18",
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"esbuild": "^0.17.5",
"eslint": "^8.32.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"web-ext": "^7.5.0"
}
}