-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 762 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 762 Bytes
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
{
"name": "chrome-show-tab-numbers",
"version": "1.6.0",
"description": "A Chromium extension to show tab numbers.",
"main": "background.js",
"type": "module",
"devDependencies": {
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.3.0",
"prettier": "^3.8.1"
},
"scripts": {
"lint": "eslint *.js",
"format": "eslint --fix *.js && prettier --write .",
"format-check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/kg8m/chrome-show-tab-numbers.git"
},
"author": "kg8m",
"license": "MIT",
"bugs": {
"url": "https://github.com/kg8m/chrome-show-tab-numbers/issues"
},
"homepage": "https://github.com/kg8m/chrome-show-tab-numbers"
}