-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.13 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.13 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
{
"name": "@example/basics",
"type": "module",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "bun --bun astro dev --open",
"build": "astro build",
"build:check": "astro check",
"lint": "oxlint --fix && eslint \"**/*.astro\" --fix",
"lint:check": "oxlint --quiet && eslint \"**/*.astro\"",
"fmt": "oxfmt --write . && prettier \"**/*.astro\" --write --log-level warn",
"fmt:check": "oxfmt --check && prettier \"**/*.astro\" --check --log-level warn"
},
"prepare": "lefthook install",
"dependencies": {
"@tailwindcss/vite": "^4.1.18",
"astro": "^6.0.0-beta.6",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"lefthook": "^2.0.16",
"oxfmt": "^0.27.0",
"oxlint": "^1.42.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^5.9.3"
}
}