aboutsummaryrefslogtreecommitdiffhomepage
path: root/package.json
blob: 115138bfc6ff517439cfdc239737a9626bd87a1f (plain)
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
61
62
63
64
65
66
67
{
  "name": "sponsorblock",
  "version": "1.0.0",
  "description": "",
  "main": "background.js",
  "dependencies": {
    "@types/react": "^16.9.22",
    "@types/react-dom": "^16.9.5",
    "babel": "^6.23.0",
    "babel-core": "^6.26.3",
    "babel-loader": "^8.0.6",
    "babel-preset-env": "^1.7.0",
    "concurrently": "^5.1.0",
    "react": "^16.12.0",
    "react-dom": "^16.12.0"
  },
  "devDependencies": {
    "@types/chrome": "0.0.91",
    "@types/firefox-webext-browser": "70.0.1",
    "@types/jest": "^24.0.23",
    "@types/jquery": "^3.3.31",
    "@typescript-eslint/eslint-plugin": "^4.9.1",
    "@typescript-eslint/parser": "^4.9.1",
    "copy-webpack-plugin": "^6.0.3",
    "eslint": "^7.15.0",
    "eslint-plugin-react": "^7.21.5",
    "jest": "^26.4.0",
    "rimraf": "^3.0.0",
    "ts-jest": "^26.2.0",
    "ts-loader": "^6.2.1",
    "typescript": "~3.7.3",
    "web-ext": "^6.2.0",
    "webpack": "~4.41.2",
    "webpack-cli": "~3.3.10",
    "webpack-merge": "~4.2.2"
  },
  "scripts": {
    "web-run": "npm run web-run:chrome",
    "web-sign": "web-ext sign -s dist",
    "web-run:firefox": "cd dist && web-ext run --start-url https://addons.mozilla.org/firefox/addon/ublock-origin/",
    "web-run:firefox-android": "cd dist && web-ext run -t firefox-android --firefox-apk org.mozilla.fenix",
    "web-run:chrome": "cd dist && web-ext run --start-url https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm -t chromium",
    "build": "npm run build:chrome",
    "build:chrome": "webpack --env.browser=chrome --config webpack/webpack.prod.js",
    "build:firefox": "webpack --env.browser=firefox --config webpack/webpack.prod.js",
    "build:dev": "npm run build:dev:chrome",
    "build:dev:chrome": "webpack --env.browser=chrome --config webpack/webpack.dev.js",
    "build:dev:firefox": "webpack --env.browser=firefox --config webpack/webpack.dev.js",
    "build:watch": "npm run build:watch:chrome",
    "build:watch:chrome": "webpack --env.browser=chrome --config webpack/webpack.dev.js --watch",
    "build:watch:firefox": "webpack --env.browser=firefox --config webpack/webpack.dev.js --watch",
    "dev": "npm run build:dev && concurrently \"npm run web-run\" \"npm run build:watch\"",
    "dev:firefox": "npm run build:dev:firefox && concurrently \"npm run web-run:firefox\" \"npm run build:watch:firefox\"",
    "dev:firefox-android": "npm run build:dev:firefox && concurrently \"npm run web-run:firefox-android\" \"npm run build:watch:firefox\"",
    "clean": "rimraf dist",
    "test": "npx jest",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ajayyy/SponsorBlock.git"
  },
  "author": "Ajay Ramachandran",
  "license": "GPL-3.0-only",
  "private": true
}