-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.84 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.84 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
{
"$schema": "https://www.schemastore.org/package.json",
"author": "Me Yo",
"bugs": {
"url": "https://github.com/jzer7/tab-a-mole/issues"
},
"description": "chrome extension",
"devDependencies": {
"@eslint/config-inspector": "^2.0.0",
"@eslint/css": "^1.2.0",
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@eslint/markdown": "^8.0.1",
"@types/bun": "^1.3.13",
"@types/chrome": "^0.1.40",
"chrome-types": "^0.1.425",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"extension": "^3.14.5",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1"
},
"homepage": "https://github.com/jzer7/tab-a-mole#readme",
"keywords": [
"chrome-extension",
"tab-manager"
],
"license": "MIT",
"name": "tab-a-mole",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/jzer7/tab-a-mole.git"
},
"scripts": {
"NOTE": "echo bun has their own commands 'build', 'dev', 'test' which are different than their 'run' scripts",
"dev": "extension dev --browser chrome",
"dev:bun": "bun dev",
"start": "extension start --browser chrome",
"format:check": "prettier --check .",
"format:fix": "prettier --write **/*.{md,html,json}",
"build:bun": "bun build",
"lint": "eslint '**/*.ts'",
"lint:fix": "eslint --fix '**/*.ts'",
"build": "extension build --browser chrome",
"package": "extension build --zip",
"prepare": "husky",
"preview": "extension preview"
},
"type": "module",
"version": "2.0.1",
"lint-staged": {
"**/*.{css,html,json,md}": [
"prettier --write"
],
"**/*.{js,cjs,mjs,ts}": [
"eslint --fix"
]
}
}