-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
41 lines (41 loc) · 1.07 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": "tabtowindow",
"version": "3.3.3",
"description": "Chrome Extension to move tabs out of windows with a keyboard shortcut",
"main": "index.html",
"type": "module",
"directories": {
"doc": "docs",
"lib": "lib"
},
"scripts": {
"build": "./build.sh",
"watch": "./watch.sh",
"ship": "./ship.sh",
"lint": "eslint --fix",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/acarabott/tabToWindow.git"
},
"author": "Arthur Carabott",
"license": "MIT",
"bugs": {
"url": "https://github.com/acarabott/tabToWindow/issues"
},
"homepage": "https://github.com/acarabott/tabToWindow#readme",
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/chrome": "^0.0.269",
"@types/eslint__js": "^8.42.3",
"@types/jquery": "^3.5.14",
"@types/jqueryui": "^1.12.16",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
}
}