-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.67 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.67 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
{
"name": "hide-impression",
"version": "2.2.5",
"description": "Browser extension to hide the number of Twitter impressions",
"main": "index.js",
"type": "module",
"scripts": {
"build": "cross-env NODE_OPTIONS=--experimental-transform-types NODE_ENV=production rspack build",
"watch": "cross-env NODE_OPTIONS=--experimental-transform-types NODE_ENV=development rspack build --watch",
"ci:build": "cross-env NODE_OPTIONS=--experimental-transform-types NODE_ENV=production rspack build --env updateUserScripts",
"format": "prettier --write ./src/**/*",
"format:check": "prettier --check ./src/**/*",
"lint": "eslint ./src/**/*.ts ./rspack.config.ts ./script/**/*.ts",
"package": "cross-env NODE_OPTIONS=--experimental-transform-types node ./script/package.ts",
"version": "npm run build && git add ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Robot-Inventor/hide-impression.git"
},
"keywords": [
"twitter",
"extension",
"addon"
],
"author": "Robot-Inventor",
"license": "MIT",
"bugs": {
"url": "https://github.com/Robot-Inventor/hide-impression/issues"
},
"homepage": "https://github.com/Robot-Inventor/hide-impression#readme",
"dependencies": {
"@robot-inventor/eslint-config": "^11.0.0",
"chokidar": "^5.0.0",
"eslint": "^10.0.0",
"prettier": "^3.2.5",
"twi-ext": "^1.0.0",
"web-ext": "^10.0.0"
},
"devDependencies": {
"@robot-inventor/tsconfig-base": "^7.0.0",
"@rspack/cli": "^1.1.0",
"@rspack/core": "^1.1.0",
"@types/node": "^25.0.2",
"cross-env": "^10.0.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"typescript": "^6.0.0"
}
}