-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.77 KB
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
{
"name": "yt-ad-autoskipper",
"version": "2.2.0",
"description": "An extension that auto skips ads after YouTube provides a skip ad button. It does not block an ad.",
"main": "index.js",
"scripts": {
"copy": "rm -rf build && cp -R src/dist build && cp LICENSE.md build",
"dev": "NODE_ENV=development npm run rollup:watch",
"package": "cd build && zip -r yt-ad-autoskipper-$npm_package_version.zip ./",
"build": "npm run copy && NODE_ENV=production npm run rollup && npm run package && mv build/*.zip .",
"rollup": "rollup --config rollup.config.js",
"rollup:watch": "npm run rollup -- --watch",
"lint": "eslint src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/squgeim/yt-ad-autoskipper.git"
},
"author": "Shreya Dahal <shreyadahal@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/squgeim/yt-ad-autoskipper/issues"
},
"homepage": "https://github.com/squgeim/yt-ad-autoskipper#readme",
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/preset-typescript": "^7.29.7",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/chrome": "^0.2.0",
"@types/debounce": "^1.2.4",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.61.0",
"@typescript-eslint/parser": "^8.61.0",
"babel-jest": "^30.4.1",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"jest": "^30.4.2",
"prettier": "^3.8.3",
"rollup": "^4.61.1",
"rollup-plugin-copy": "^3.5.0",
"tslib": "^2.8.1",
"typescript": "^6.0.3"
}
}