-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.64 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
42
43
44
45
46
47
48
49
50
{
"name": "Mark tab manager",
"version": "0.1.46",
"description": "Automatically group tabs by domain",
"repository": "https://github.com/bradcush/mark-tab-manager.git",
"author": "Bradley Cushing <[email protected]>",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build:dev": "bun meta:clean && bun meta:manifest && bun meta/dev.build.ts && bun meta:copy",
"build:prod": "bun meta:clean && bun meta:manifest && bun meta/prod.build.ts && bun meta:copy",
"lint": "eslint --ext .ts,.json .",
"meta:clean": "rm -rf dist && rm -rf generated && mkdir generated",
"meta:copy": "cp generated/* dist && mkdir -p dist/icons && cp src/icons/* dist/icons",
"meta:manifest": "bun meta/manifest/run.ts --browser chromium > generated/manifest.json",
"test:unit": "bun test --preload ./test.config.ts"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "bun lint"
}
},
"dependencies": {
"parse-domain": "^3.0.3",
"tslib": "^2.2.0"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/chrome": "^0.0.171",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"bun-types": "^0.7.3",
"commander": "^7.2.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^4.3.8",
"prettier": "^3.0.2",
"ts-loader": "^7.0.5",
"typescript": "5.0.4"
}
}