-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.41 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
{
"name": "formwerk.dev",
"type": "module",
"version": "0.0.1",
"packageManager": "[email protected]+sha256.652c47dac7c2b9350db4cdb9330c087d527114a0c2dff4cbac7ea9b96be928bd",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"prepare": "husky",
"lint": "eslint .",
"typecheck": "pnpm tsc --noEmit --skipLibCheck --project ./tsconfig.json"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/partytown": "^2.1.3",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/starlight": "^0.30.3",
"@astrojs/starlight-tailwind": "^3.0.0",
"@astrojs/tailwind": "^5.1.4",
"@astrojs/ts-plugin": "^1.10.4",
"@astrojs/vue": "^5.0.4",
"@floating-ui/vue": "^1.1.5",
"@formwerk/core": "^0.6.2",
"@iconify-json/vscode-icons": "^1.2.8",
"@types/byte-size": "^8.1.2",
"@vue/compiler-sfc": "^3.5.13",
"@vue/repl": "^4.4.3",
"@vueuse/core": "^12.3.0",
"arktype": "2.0.0-rc.32",
"astro": "^5.1.2",
"astro-expressive-code": "^0.38.3",
"byte-size": "^9.0.1",
"fflate": "^0.8.2",
"radix-vue": "^1.9.12",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"valibot": "1.0.0-beta.10",
"vue": "^3.5.13",
"zod": "^3.24.1"
},
"devDependencies": {
"@babel/types": "^7.26.3",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "9.17.0",
"@expressive-code/plugin-collapsible-sections": "^0.38.3",
"@iconify-json/ph": "^1.2.2",
"@shikijs/twoslash": "^1.26.1",
"@types/hash-sum": "^1.0.2",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "9.17.0",
"eslint-plugin-astro": "^1.3.1",
"globals": "^15.14.0",
"gzip-size": "^7.0.0",
"hash-sum": "^2.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"lodash-es": "^4.17.21",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"shiki": "^1.26.1",
"sucrase": "^3.35.0",
"typescript-eslint": "^8.19.0",
"unplugin-icons": "^0.22.0",
"unplugin-vue-components": "^0.28.0"
},
"lint-staged": {
"*.{js,mjs,ts,md,mdx,astro,css}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
]
}
}