-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.24 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "oriverk.dev",
"description": "oriverk's site",
"type": "module",
"version": "1.0.0",
"keywords": [
"Astro",
"Svelte"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/oriverk/oriverk.dev.git"
},
"bugs": {
"url": "https://github.com/oriverk/oriverk.dev/issues"
},
"homepage": "https://github.com/oriverk/oriverk.dev#readme",
"scripts": {
"clean": "rm -r ./contents/*.json ./src/content/static/cv.md",
"script": "run-s script:*",
"script:feed": "npx tsx script/getFeed.mts",
"script:github": "npx tsx --env-file=.env script/getGitHubUserContent.mts",
"script:cv": "npx tsx --env-file=.env script/getGitHubRepositoryContent.mts",
"astro": "astro",
"sync": "astro sync",
"dev": "astro dev",
"build": "astro build",
"postbuild": "npx pagefind --site dist",
"preview": "astro preview",
"lint": "run-p lint:*",
"lint:prettier": "biome format ./src",
"lint:eslint": "biome lint ./src",
"lint:markdownlint": "markdownlint ./src/**/*.{md,mdx}",
"lint:textlint": "textlint ./src/**/*.{md,mdx}",
"fix": "run-s fix:*",
"fix:prettier": "biome format --write ./src",
"fix:eslint": "biome check --write ./src",
"fix:markdownlint": "markdownlint --fix ./src/**/*.{md,mdx}",
"fix:textlint": "textlint --fix ./src/**/*.{md,mdx}",
"prepare": "husky"
},
"dependencies": {
"@astrojs/mdx": "^4.0.0-beta.2",
"@astrojs/rss": "^4.0.8",
"@astrojs/svelte": "^6.0.0-beta.1",
"@expressive-code/plugin-line-numbers": "^0.37.0",
"@octokit/graphql": "^8.1.1",
"astro": "^5.0.0-beta.4",
"astro-expressive-code": "^0.37.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"fetch-site-metadata": "^0.2.0",
"gray-matter": "^4.0.3",
"hast": "^1.0.0",
"html-to-image": "^1.11.11",
"mdast": "^3.0.0",
"pagefind": "^1.1.1",
"remark": "^15.0.1",
"remark-comment": "^1.0.0",
"remark-github-alerts": "^0.1.0-beta.3",
"rss-parser": "^3.13.0",
"satori": "^0.11.2",
"sharp": "^0.33.5",
"strip-markdown": "^6.0.0",
"svelte": "^5.0.0-next.259",
"unified": "^11.0.5",
"unist-util-inspect": "^8.1.0",
"unist-util-is": "^6.0.0",
"unist-util-visit": "^5.0.0",
"url-join": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@proofdict/textlint-rule-proofdict": "^3.1.2",
"@textlint/textlint-plugin-markdown": "^14.2.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.7.5",
"fs-extra": "^11.2.0",
"husky": "^9.1.6",
"markdownlint-cli": "^0.42.0",
"npm-run-all2": "^6.2.3",
"textlint": "^14.2.1",
"textlint-filter-rule-allowlist": "^4.0.0",
"textlint-plugin-latex2e": "^1.2.1",
"textlint-rule-aws-service-name": "^1.11.0",
"textlint-rule-ja-no-abusage": "^3.0.0",
"textlint-rule-ja-no-inappropriate-words": "^2.0.0",
"textlint-rule-no-kangxi-radicals": "^0.2.2",
"textlint-rule-period-in-list-item": "^1.0.1",
"textlint-rule-preset-ja-spacing": "^2.4.3",
"textlint-rule-preset-ja-technical-writing": "^10.0.1",
"tsx": "^4.19.1"
},
"overrides": {
"@sveltejs/vite-plugin-svelte": "^4.0.0-next.6"
}
}