-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.11 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
{
"name": "@he4rt/he4rtdevs",
"version": "3.0.0",
"license": "MIT",
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"type": "module",
"engines": {
"node": "^24"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"format": "prettier --write \"**/*.{js,ts,json,yml,md,css}\"",
"prepare": "husky",
"outdated": "npm-check-updates"
},
"devDependencies": {
"@emnapi/core": "1.11.1",
"@emnapi/runtime": "1.11.1",
"@tailwindcss/typography": "0.5.20",
"@tailwindcss/vite": "4.3.1",
"concurrently": "10.0.3",
"husky": "9.1.7",
"laravel-vite-plugin": "3.1.0",
"lint-staged": "17.0.8",
"npm-check-updates": "22.2.7",
"prettier": "3.8.4",
"tailwindcss": "4.3.1",
"tw-animate-css": "1.4.0",
"vite": "8.0.16"
},
"lint-staged": {
"*.{js,ts,json,yml,md,css}": [
"prettier --write"
],
"*.php": [
"vendor/bin/rector process",
"vendor/bin/pint"
]
}
}