-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "hearth-components",
"version": "0.1.0",
"description": "Robust components for the Laravel Framework.",
"main": "index.js",
"type": "module",
"directories": {
"test": "tests"
},
"scripts": {
"build": "run-s clean build:*",
"build:css": "lightningcss --minify resources/src/hearth.css -o resources/dist/hearth.css",
"build:js": "esbuild resources/src/*.js --outdir=resources/dist --minify",
"clean": "rimraf resources/dist",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluid-project/hearth-components.git"
},
"keywords": ["hearth", "laravel", "blade", "components"],
"author": "OCAD University <idrc@ocadu.ca>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/fluid-project/hearth-components/issues"
},
"homepage": "https://github.com/fluid-project/hearth-components#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"esbuild": "0.24.0",
"husky": "9.1.7",
"lightningcss-cli": "1.28.2",
"lint-staged": "15.2.10",
"npm-run-all2": "7.0.1",
"rimraf": "6.0.1"
},
"lint-staged": {
"*.{css,js,json}": "biome check --write",
".php": "vendor/bin/pint"
},
"dependencies": {
"luxon": "3.5.0"
}
}