-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.54 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.54 KB
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
{
"name": "shadowban-scanner",
"version": "4.1.0",
"description": "A browser extension that detects shadowbans on X (formerly Twitter).",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint \"./src/**/*.ts\" \"./script/**/*.ts\" \"./rspack.config.ts\" && npx knip && cross-env NODE_OPTIONS=--experimental-transform-types node ./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 cross-env NODE_OPTIONS=--experimental-transform-types NODE_ENV=production npx rspack build",
"dev": "npx cross-env NODE_OPTIONS=--experimental-transform-types NODE_ENV=development npx rspack build --watch",
"ci:build": "npx cross-env NODE_OPTIONS=--experimental-transform-types NODE_ENV=production npx rspack build --env updateUserScripts",
"package": "cross-env NODE_OPTIONS=--experimental-transform-types node ./script/package.ts",
"version": "npm run package && git add .",
"prepare": "ts-patch install && typia patch"
},
"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": "^2.0.0",
"addons-linter": "^10.0.0",
"chokidar": "^5.0.0",
"colors": "^1.4.0",
"css-loader": "^7.0.0",
"eslint": "^10.0.0",
"glob": "^13.0.0",
"lit": "^3.0.2",
"prettier": "^3.0.0",
"style-loader": "^4.0.0",
"twi-ext": "^1.0.0",
"typescript": "^5.9.0",
"web-ext": "^10.0.0",
"webextension-polyfill": "^0.12.0",
"webpack-license-plugin": "^4.4.2"
},
"devDependencies": {
"@robot-inventor/eslint-config": "^11.1.9",
"@robot-inventor/ts-utils": "^0.8.0",
"@robot-inventor/tsconfig-base": "^7.0.0",
"@rspack/cli": "^1.3.15",
"@rspack/core": "^1.0.14",
"@types/addons-linter": "^6.16.0",
"@types/webextension-polyfill": "^0.12.0",
"@typia/unplugin": "^12.0.1",
"cross-env": "^10.0.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"knip": "^6.0.0",
"ts-patch": "^3.3.0",
"typia": "^12.0.1"
},
"overrides": {
"zod-validation-error": "^5.0.0"
}
}