forked from plussub/plussub
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·96 lines (96 loc) · 2.89 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@plussub/open-subtitles-extension",
"version": "6.3.8",
"description": "Browser extension which adds subtitle to html5 videos",
"author": "Stefan Breitenstein",
"type": "module",
"exports": {
"./dist-chrome": "./dist-chrome",
"./dist-firefox": "./dist-firefox",
"./src/*": "./src/*"
},
"files": [
"dist-chrome",
"dist-firefox",
"src"
],
"scripts": {
"eslint": "eslint --ext .ts,.vue --ignore-path .gitignore .",
"tscheck": "tsc --noEmit",
"gen": "graphql-codegen",
"start:chrome": "webpack --env browser=chrome --watch",
"build:chrome": "webpack --env browser=chrome --env mode=production",
"start:firefox": "webpack --env browser=firefox --watch",
"build:firefox": "webpack --env browser=firefox --env mode=production",
"build:all": "npm run build:chrome && npm run build:firefox",
"test": "jest --no-cache",
"prepublishOnly": "npm run build:all"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@plussub/srt-vtt-parser": "^1.1.0",
"ass-compiler": "^0.1.1",
"chardet": "^1.5.0",
"chart.js": "^2.9.4",
"luxon": "^2.4.0",
"pinia": "^2.0.23",
"pinia-plugin-persistedstate": "^2.3.0",
"rxjs": "^7.5.7",
"typeface-roboto": "^1.1.13",
"typeface-rubik": "^1.1.13",
"uuid": "^9.0.0",
"vue": "^3.2.45"
},
"engine": "node >= 0.10",
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.4.0",
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@tailwindcss/forms": "^0.5.3",
"@types/chart.js": "^2.9.29",
"@types/chrome": "^0.0.237",
"@types/firefox-webext-browser": "^111.0.1",
"@types/graphql": "^14.5.0",
"@types/jest": "^29.2.2",
"@types/luxon": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"@vue/compiler-sfc": "^3.2.45",
"autoprefixer": "^10.4.13",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.4.0",
"cssnano": "^5.1.14",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-gh-issue": "^0.0.4",
"eslint-plugin-vue": "^9.7.0",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"jest": "^29.3.0",
"postcss": "^8.4.14",
"postcss-loader": "^7.0.1",
"prettier": "^2.7.1",
"style-loader": "^3.3.1",
"tailwindcss": "^3.2.2",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"typescript": "^5.1.3",
"url-loader": "^4.1.1",
"vue-eslint-parser": "^9.1.0",
"vue-loader": "^17.0.1",
"web-ext": "^7.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"prettier": {
"trailingComma": "none",
"printWidth": 200,
"singleQuote": true
},
"publishConfig": {
"access": "public"
}
}