-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.56 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
51
52
53
{
"name": "gossip-site-blocker",
"version": "1.16.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",
"deploy": "tsx ./scripts/github_release.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.5.2"
},
"devDependencies": {
"@types/chrome": "0.0.280",
"@types/node": "^22.9.0",
"date-fns": "4.1.0",
"dependency-cruiser": "^16.6.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-junit": "^8.40.0",
"eslint-plugin-n": "^17.12.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.12.0",
"jsdom": "^25.0.1",
"npm-run-all2": "^7.0.1",
"prettier": "^3.3.3",
"sort-package-json": "^2.10.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vite": "^5.4.10",
"vitest": "^2.1.4",
"zip-a-folder": "3.1.8"
},
"packageManager": "pnpm@9.12.3"
}