-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"name": "keycapsss-link-site",
"description": "Keycapsss Link Site",
"version": "2.0.0",
"author": "BenRoe",
"type": "module",
"dependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/vite": "^4.1.18",
"astro": "5.16.5",
"tailwindcss": "^4.1.18"
},
"keywords": [
"astro",
"tailwind",
"tailwindcss",
"static site"
],
"license": "MIT",
"scripts": {
"dev": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"check": "astro check",
"analyze:prettier": "prettier --list-different \"**/*.{css,js,astro,json,md}\"",
"analyze:eslint": "eslint .",
"analyze": "npm run analyze:prettier && npm run analyze:eslint",
"fix:prettier": "prettier --write \"**/*.{css,js,astro,json,md}\"",
"fix:eslint": "eslint . --fix",
"fix": "npm run fix:prettier && npm run fix:eslint"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@typescript-eslint/parser": "^8.49.0",
"cssnano": "^7.1.2",
"eslint": "^9.39.1",
"eslint-plugin-astro": "^1.5.0",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.9.3"
}
}