-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 2.21 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
{
"name": "flashkill",
"version": "2.2.0",
"description": "This browser extension aims to improve the user experience on for both players and spectators of the 99Damage league websites.",
"scripts": {
"clean:license-details": "find dist/LICENSE-DETAILS.md | xargs --no-run-if-empty -t rm",
"clean:scripts": "find dist -regextype posix-extended -regex '.*(index|background)\\.js' | xargs --no-run-if-empty -t rm",
"clean:css": "find dist -regextype posix-extended -regex '.*(styles)\\.css' | xargs --no-run-if-empty -t rm",
"clean:tree": "find dist -type d -empty -delete",
"clean": "npm-run-all clean:*",
"generate-licenses": "license-report-generator --table --depth 1 --with-dev-dependencies --out-file dist/LICENSE-DETAILS.md",
"build": "webpack --config webpack.config.js* && npm run generate-licenses",
"watch": "watch 'npm run build' src",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flashkillapp/flashkill.git"
},
"author": "Timon Lapawczyk, Yannic Lapawczyk",
"license": "MIT",
"bugs": {
"url": "https://github.com/flashkillapp/flashkill/issues"
},
"homepage": "https://github.com/flashkillapp/flashkill#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.15.0",
"@types/chrome": "0.0.114",
"@types/node": "^14.0.6",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@wbmnky/license-report-generator": "^2.1.3",
"copy-webpack-plugin": "^9.0.1",
"eslint": "^7.32.0",
"eslint-plugin-lit": "^1.6.0",
"eslint-plugin-wc": "^1.3.2",
"npm-run-all": "^4.1.5",
"source-map-loader": "^1.0.0",
"typescript": "^3.9.3",
"webpack": "^5.59.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@babel/core": "^7.13.2",
"@node-steam/id": "^1.2.0",
"@vaadin/vaadin": "^21.0.3",
"@vaadin/vaadin-material-styles": "^21.0.3",
"@vaadin/vaadin-themable-mixin": "^21.0.3",
"@webcomponents/custom-elements": "^1.5.0",
"babel-loader": "^8.1.0",
"babel-preset-expo": "^8.4.1",
"lit": "^2.0.0",
"watch": "^1.0.2"
}
}