-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.35 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
{
"name": "hackerweb-tools",
"version": "1.0.0",
"type": "module",
"description": "Enhancements for Hacker News and HackerWeb",
"scripts": {
"prepare": "lefthook install",
"build": "vite build -c vite/config.ts",
"build:watch": "vite build -c vite/config.ts --watch",
"test": "vitest",
"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.8"
},
"packageManager": "bun@1.3.8",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/bun": "^1.3.8",
"@types/node": "^25.1.0",
"@vitejs/plugin-basic-ssl": "^2.1.4",
"@vitest/ui": "^4.0.18",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.2.0",
"jiti": "^2.6.1",
"jsdom": "^27.4.0",
"lefthook": "^2.0.16",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1",
"vite-plugin-monkey": "^7.1.9",
"vitest": "^4.0.18"
}
}