-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1.34 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
{
"name": "xbox-cloud-server-selector",
"description": "A browser extension to select the server region and IP version for Xbox Cloud Gaming",
"scripts": {
"build": "webpack --config webpack.prod.js",
"build:dev": "webpack --config webpack.dev.js",
"watch": "webpack --config webpack.dev.js --watch",
"lint": "eslint src --max-warnings 0",
"lint:fix": "eslint src --max-warnings 0 --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"clean": "rm -r dist/ node_modules/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/n-thumann/xbox-cloud-server-selector.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/n-thumann/xbox-cloud-server-selector/issues"
},
"homepage": "https://github.com/n-thumann/xbox-cloud-server-selector",
"devDependencies": {
"@types/chrome": "^0.0.242",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^3.0.0",
"standard": "^17.0.0",
"style-loader": "^3.3.2",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1"
}
}