-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.55 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
{
"name": "astro-vitesse",
"type": "module",
"version": "0.2.2",
"packageManager": "pnpm@9.12.1",
"description": "Build beautiful, accessible, high-performance blog websites with Astro",
"author": "Adrián UB",
"license": "MIT",
"funding": "https://github.com/sponsors/adrian-ub",
"homepage": "https://github.com/adrian-ub/astro-vitesse#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/adrian-ub/astro-vitesse.git"
},
"bugs": "https://github.com/adrian-ub/astro-vitesse/issues",
"keywords": [
"withastro",
"astro",
"blog",
"website",
"portfolio",
"astro-integration"
],
"sideEffects": false,
"exports": {
".": "./src/index.ts",
"./theme": "./src/theme.ts",
"./schema": "./src/schema.ts",
"./locals": "./src/locals.ts",
"./props": "./src/props.ts",
"./routes/*": "./src/routes/*",
"./components/*": "./src/components/*"
},
"main": "./src/index.ts",
"types": "./src/types.ts",
"files": [
"src"
],
"scripts": {
"lint": "eslint .",
"release": "bumpp && npm publish",
"test": "vitest",
"typecheck": "astro check --minimumSeverity warning --noSync && pnpm --filter docs typecheck",
"prepare": "simple-git-hooks",
"docs": "nr -C docs dev",
"docs:build": "nr -C docs build"
},
"peerDependencies": {
"@iconify/json": "^2.2.256",
"@unocss/reset": "^0.63.2",
"astro": "^4.15.0",
"unocss": "^0.59.4"
},
"dependencies": {
"@astrojs/markdown-remark": "^5.3.0",
"@astrojs/mdx": "^3.1.8",
"@astrojs/sitemap": "^3.2.1",
"bcp-47": "^2.1.0",
"dayjs": "^1.11.13",
"fast-glob": "^3.3.2",
"hast-util-find-and-replace": "^5.0.1",
"i18next": "^23.15.2",
"nprogress": "^0.2.0",
"rehype-autolink-headings": "^7.1.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@antfu/ni": "^0.23.0",
"@prettier/plugin-xml": "^3.4.1",
"@types/node": "^22.7.5",
"@types/nprogress": "^0.2.3",
"@unocss/eslint-plugin": "^0.63.4",
"@vitest/coverage-v8": "2.1.2",
"astro": "^4.16.6",
"bumpp": "^9.7.1",
"eslint": "^9.12.0",
"eslint-plugin-astro": "^1.2.4",
"eslint-plugin-format": "^0.1.2",
"lint-staged": "^15.2.10",
"pnpm": "^9.12.1",
"prettier-plugin-astro": "^0.14.1",
"simple-git-hooks": "^2.11.1",
"typescript": "5.5.4",
"unocss": "0.59.4",
"vite": "^5.4.8",
"vitest": "^2.1.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}