-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.51 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.51 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
{
"name": "horasolis",
"version": "1.0.0",
"main": "server.mjs",
"scripts": {
"build:esbuild": "esbuild src/js/main.mjs --bundle --format=esm --out-extension:.js=.mjs --outdir=docs/js --sourcemap --minify",
"build:tailwindcss": "tailwindcss --input src/css/base.css --output docs/css/base.css --minify",
"build": "npm-run-all --sequential build:* post-build:*",
"dev:esbuild": "esbuild src/js/main.mjs --bundle --format=esm --out-extension:.js=.mjs --outdir=docs/js --sourcemap --watch",
"dev:repomix": "repomix --no-file-summary --ignore 'docs/css,docs/js,src/js/timezonePosition.mjs,CONTRIBUTING.md,CONTRIBUTORS.md,LICENSE'",
"dev:server": "node server.mjs",
"dev:tailwindcss": "tailwindcss --input src/css/base.css --output docs/css/base.css --watch",
"lint": "eslint src/js/*.mjs",
"post-build:html-assets-hash": "html-assets-hash docs/index.html",
"start": "npm-run-all --parallel dev:*"
},
"author": "Hora Solis project contributors",
"license": "Apache-2.0",
"description": "A digital Roman clock that divides day and night into temporal hours, revealing how time flows with the sun — expanding and contracting with light.",
"devDependencies": {
"@eslint/js": "^9.14.0",
"esbuild": "^0.25.2",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"html-assets-hash": "^1.0.3",
"npm-run-all": "^4.1.5",
"repomix": "^0.3.1",
"tailwindcss": "^3.4.15",
"temporal-polyfill": "^0.3.0"
},
"dependencies": {
"mime": "^4.0.4",
"open": "^10.1.0"
}
}