-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
60 lines (60 loc) · 1.81 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
{
"name": "likes-blocker",
"version": "4.0.3",
"description": "Block all visible likers (and optionally all retweeters) of a tweet on Twitter.",
"main": "dist/script.js",
"scripts": {
"start": "NODE_ENV=development rollup -w --config rollup.config.js",
"build": "NODE_ENV=production rollup --config rollup.config.js",
"buildDev": "NODE_ENV=development rollup --config rollup.config.js",
"lint": "eslint src/**/*.ts",
"fix": "eslint src/**/*.ts src/*.ts --fix",
"version": "node util/release.js && npm run build && git add .",
"postversion": "node util/zip.js",
"publish_edge": "node util/publish_edge.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmstern/likers-blocker.git"
},
"keywords": [
"block",
"likers",
"twitter",
"tweet",
"hatespeech"
],
"author": "Daniel Morgenstern <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dmstern/likers-blocker/issues"
},
"homepage": "https://github.com/dmstern/likers-blocker#readme",
"devDependencies": {
"@plasmohq/edge-addons-api": "^1.1.1",
"@rollup/plugin-eslint": "^9.0.3",
"@rollup/plugin-typescript": "^11.0.0",
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"archiver": "^5.3.1",
"dotenv": "^16.0.3",
"eslint": "^8.34.0",
"eslint-plugin-prettier": "^4.2.1",
"mkdirp": "^2.1.3",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-prettier": "^3.0.0",
"rollup-plugin-sass": "^1.12.17",
"rollup-plugin-terser": "^7.0.2",
"stylelint": "^15.1.0",
"stylelint-config-standard": "^30.0.1",
"stylelint-config-standard-scss": "^7.0.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"type": "module",
"dependencies": {
"webextension-polyfill": "^0.10.0"
}
}