-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.89 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.89 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
59
60
61
62
63
64
65
66
67
68
{
"name": "cotsuka.github.io",
"description": "Cameron Otsuka's personal site featuring Bitcoin analysis, capital market insights, and thoughtful commentary on technology, privacy, and culture.",
"version": "2.1.0",
"type": "module",
"scripts": {
"dev": "bun x --bun astro dev",
"build": "bun x --bun astro build",
"preview": "bun x --bun astro preview",
"astro": "bun x --bun astro",
"index": "bun x --bun pagefind",
"lint": "bun x --bun eslint src/",
"lint:fix": "bun x --bun eslint src/ --fix",
"format": "bun x --bun prettier --check .",
"format:fix": "bun x --bun prettier --write .",
"typecheck": "bun x --bun astro check",
"test": "bun test"
},
"simple-git-hooks": {
"pre-commit": "bun x --bun lint-staged"
},
"lint-staged": {
"*.{ts,tsx,astro,js}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md,json}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/cotsuka/cotsuka.github.io.git"
},
"author": {
"name": "Cameron Otsuka",
"url": "https://cameron.otsuka.systems"
},
"license": "MIT",
"homepage": "https://github.com/cotsuka/cotsuka.github.io",
"engines": {
"bun": ">=1.0.0"
},
"dependencies": {
"@astrojs/mdx": "5.0.3",
"@astrojs/rss": "4.0.18",
"@astrojs/sitemap": "3.7.2",
"@iconify-json/mdi": "^1.2.3",
"@pagefind/component-ui": "^1.5.2",
"@vercel/og": "^0.8.6",
"astro": "6.1.5",
"astro-icon": "^1.1.5",
"pagefind": "^1.5.2"
},
"devDependencies": {
"@astrojs/check": "0.9.8",
"@eslint/js": "^9.39.4",
"@types/bun": "^1.3.12",
"eslint": "^9.39.4",
"eslint-plugin-astro": "^1.7.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.2",
"prettier-plugin-astro": "^0.14.1",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1"
}
}