This repository has been archived by the owner on Aug 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.95 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
{
"name": "the-content-farm-terminator",
"version": "4.2.1",
"private": true,
"description": "🚫 Remove farm results from search pages 🚫",
"author": {
"name": "hyperbola",
"email": "me@hyperbola.me",
"url": "https://blog.hyperbola.me"
},
"homepage": "https://github.com/wdzeng/the-content-farm-terminator",
"repository": {
"type": "git",
"url": "https://github.com/wdzeng/the-content-farm-terminator.git"
},
"packageManager": "pnpm@8.6.7",
"type": "module",
"scripts": {
"dev": "pnpm dev:chrome",
"dev:chrome": "BROWSER=chrome NODE_ENV=development VERSION=9999.9999.9999 pnpm _build",
"dev:firefox": "BROWSER=firefox NODE_ENV=development VERSION=9999.9999.9999 pnpm _build",
"build": "pnpm build:chrome",
"build:chrome": "BROWSER=chrome NODE_ENV=production pnpm _build",
"build:firefox": "BROWSER=firefox NODE_ENV=production pnpm _build",
"_build": "pnpm clean && pnpm tsc && pnpm sass && pnpm copy && build/manifest.sh && build/zip.sh",
"tsc": "rollup -c rollup.config.js",
"sass": "sass --style compressed --no-source-map ./src/scss/popup.scss:./dist/css/popup.css ./src/scss/content-script.scss:./dist/css/content-script.css",
"copy": "cp -r src/_locales src/images src/popup.html dist",
"clean": "rm -rf dist out ",
"lint": "eslint --ext .ts src/scripts/ --fix"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@sindresorhus/is": "^5.5.0",
"@types/chrome": "0.0.241",
"@types/firefox-webext-browser": "^111.0.1",
"eslint": "^8.45.0",
"eslint-config-wdzeng": "github:wdzeng/eslint-config#semver:^0.3.3",
"prettier": "^3.0.0",
"rollup": "^3.26.2",
"sass": "^1.63.6",
"typescript": "^5.1.6"
},
"bugs": {
"url": "https://github.com/wdzeng/the-content-farm-terminator/issues"
},
"license": "GPL-2.0"
}