-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.52 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
{
"name": "hackerweb-tools",
"private": true,
"type": "module",
"description": "Enhancements for Hacker News and HackerWeb",
"scripts": {
"deps:audit": "bun audit",
"hooks:install": "lefthook install",
"build": "vite build -c vite/config.ts",
"build:watch": "vite build -c vite/config.ts --watch",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"publish": "bun scripts/publish.ts",
"publish:dry": "bun scripts/publish.ts --dry-run"
},
"keywords": [
"userscript",
"hackernews",
"hackerweb"
],
"author": "Steve Whittaker <swhitt@gmail.com>",
"license": "MIT",
"engines": {
"bun": ">=1.3.14"
},
"packageManager": "bun@1.3.14",
"overrides": {
"flatted": "^3.4.2",
"minimatch": "^10.2.5",
"picomatch": "^4.0.5",
"postcss": "^8.5.18"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "^1.3.14",
"@vitest/coverage-v8": "^4.1.10",
"@vitest/ui": "^4.1.10",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.7.0",
"jiti": "^2.7.0",
"jsdom": "^29.1.1",
"lefthook": "^2.1.10",
"prettier": "^3.9.5",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.4",
"vite-plugin-monkey": "^8.0.6",
"vitest": "^4.1.10"
}
}