-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 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
{
"name": "gossip-site-blocker",
"version": "1.17.0",
"license": "MIT",
"author": "Hideki Ikemoto",
"type": "module",
"scripts": {
"archive": "tsx ./scripts/archive.ts",
"build": "run-s build:*",
"build:vite": "vite build",
"build:manifest": "tsx ./scripts/make_manifest.ts",
"dev": "vite",
"fix": "ESLINT_USE_FLAT_CONFIG=true eslint --fix .",
"format": "run-s format:*",
"format:prettier": "prettier --write .",
"format:sort-package-json": "sort-package-json",
"lint": "run-s lint:*",
"lint:dep": "depcruise .",
"lint:eslint": "ESLINT_USE_FLAT_CONFIG=true eslint .",
"lint:prettier": "prettier --check .",
"lint:sort-package-json": "sort-package-json --check",
"lint:tsc": "tsc --noEmit",
"test": "vitest"
},
"dependencies": {
"tabbyjs": "^12.0.3",
"vanjs-core": "^1.6.0"
},
"devDependencies": {
"@types/chrome": "0.1.37",
"@types/jsdom": "^28.0.0",
"@types/node": "^24.12.0",
"date-fns": "4.1.0",
"dependency-cruiser": "^17.3.8",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-formatter-junit": "^9.0.1",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.4.0",
"jsdom": "^28.1.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"sort-package-json": "^3.6.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"zip-a-folder": "4.0.4"
},
"packageManager": "pnpm@10.31.0"
}