-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.65 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
{
"name": "youtube-autoclose-ads",
"version": "0.0.0-development",
"author": "Gabriel Duarte (https://www.gabrielduarte.dev)",
"license": "MIT",
"description": "An extension to automatically close youtube ads after a certain amount of time",
"main": "src/youtube-autoclose-ads.ts",
"scripts": {
"start": "yarn build --watch",
"lint": "eslint src",
"type-check": "tsc --noEmit",
"build": "rimraf ./dist && tsc && babel src --out-dir dist --extensions .js,.jsx,.ts,.tsx --copy-files",
"postbuild": "rimraf build/**/*.xcf",
"ci": "yarn lint && yarn build",
"release": "semantic-release"
},
"keywords": [
"chrome",
"chrome extension",
"youtube",
"ads",
"advertisement",
"ad",
"automation",
"automate",
"close",
"youtube-autoclose-ads"
],
"repository": {
"type": "git",
"url": "https://github.com/GabrielDuarteM/youtube-autoclose-ads.git"
},
"bugs": {
"url": "https://github.com/GabrielDuarteM/youtube-autoclose-ads/issues"
},
"homepage": "https://github.com/GabrielDuarteM/youtube-autoclose-ads#readme",
"devDependencies": {
"@babel/cli": "7.18.6",
"@babel/core": "7.18.6",
"@babel/preset-env": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@types/chrome": "0.0.193",
"@types/node": "18.0.3",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"semantic-release": "19.0.3",
"semantic-release-chrome": "3.1.0",
"typescript": "4.7.4"
}
}