-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 2.01 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
{
"name": "shadowban-scanner",
"version": "3.1.0",
"description": "A browser extension that detects shadowbans on Twitter.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint ./src/ts/**/*.ts && npx knip && ts-node --files ./script/addonsLinter.ts",
"format": "npx prettier --write ./src/ts/**/*.ts ./src/html/**/*.html ./src/css/**/*.css",
"format:check": "npx prettier --check ./src/ts/**/*.ts ./src/html/**/*.html ./src/css/**/*.css",
"build": "npx webpack",
"watch": "npx webpack --watch",
"package": "ts-node ./script/package.ts",
"version": "npm run package && git add .",
"switchManifest": "ts-node ./script/changeManifestVersion.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Robot-Inventor/shadowban-scanner.git"
},
"keywords": [
"twitter",
"extension",
"shadowban",
"react"
],
"author": "Robot-Inventor",
"license": "MIT",
"bugs": {
"url": "https://github.com/Robot-Inventor/shadowban-scanner/issues"
},
"homepage": "https://github.com/Robot-Inventor/shadowban-scanner#readme",
"dependencies": {
"@material/web": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"addons-linter": "^6.15.0",
"async-query": "^1.0.0",
"chokidar": "^3.5.3",
"colors": "^1.4.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"glob": "^10.3.4",
"lit": "^3.0.2",
"prettier": "^3.0.0",
"style-loader": "^3.3.3",
"ts-auto-guard": "^4.1.3",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"web-ext": "^7.6.2",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4",
"webpack-license-plugin": "^4.4.2"
},
"devDependencies": {
"@types/addons-linter": "^6.16.0",
"@types/webextension-polyfill": "^0.10.4",
"knip": "^3.0.0"
}
}