-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.86 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": "linotify",
"author": "Mathias Punkenhofer",
"license": "AGPL-3.0",
"keywords": [
"linotify",
"lichess",
"extension",
"notify",
"notifications"
],
"version": "1.3.0",
"description": "Browser extension for lichess.org which notifies you if a certain player is online and/or playing.",
"homepage": "https://github.com/mpunkenhofer/linotify",
"private": true,
"scripts": {
"clean": "rimraf dist",
"prebuild": "rimraf dist",
"build": "webpack --config webpack.production.js",
"prewatch": "rimraf dist",
"watch": "webpack --config webpack.development.js",
"lint": "eslint . --ext .js,.ts",
"icons": "py ./bin/svg2pngs.py ./assets/images/linotify_icon.svg -d assets/images/ -p linotify_icon -r 16 32 48 64 96 128"
},
"devDependencies": {
"@types/lodash": "^4.14.168",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"bootstrap": "^5.0.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.0.0",
"eslint": "^7.30.0",
"fork-ts-checker-webpack-plugin": "^6.2.12",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"ignore-emit-webpack-plugin": "^2.0.6",
"mini-css-extract-plugin": "^2.1.0",
"mini-svg-data-uri": "^1.3.3",
"resolve-url-loader": "^4.0.0",
"rimraf": "^3.0.2",
"sass": "^1.35.2",
"sass-loader": "^12.1.0",
"terser-webpack-plugin": "^5.1.4",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webextension-polyfill-ts": "^0.26.0",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-ext-reloader": "^1.1.7",
"webpack-extension-manifest-plugin": "^0.7.0",
"webpack-font-preload-plugin": "^1.3.0",
"webpack-merge": "^5.8.0",
"zip-webpack-plugin": "^4.0.1"
},
"dependencies": {
"axios": "^0.21.1",
"chessground": "^8.1.2",
"lodash": "^4.17.21"
}
}