Files
gitea-themes/package.json
T
chuan 434161de5b
Release / release (push) Failing after 13s
Refactor theme management and update documentation
- Removed `.github-theme` from .gitignore as it is no longer needed.
- Updated `official-style-map.md` to clarify the maintenance of GitHub Light style increments within the current repository.
- Revised `rules.md` to reflect the new approach to maintaining GitHub Light theme increments.
- Changed test script in `package.json` to verify generated theme instead of GitHub migration.
- Added `verify-generated-theme.ts` script to validate the generated theme files.
- Migrated various styles from `.github-theme` to the new structure, updating comments and references accordingly.
2026-05-18 01:26:17 +08:00

27 lines
1.1 KiB
JSON

{
"name": "gitea-theme-dev",
"version": "1.26.1",
"private": true,
"type": "module",
"description": "Bun-powered custom theme workspace for Gitea.",
"scripts": {
"build": "bun scripts/build.ts",
"locale:sync": "bun scripts/locale.ts",
"release:package": "bun run build:min && bun scripts/package-release.ts",
"release:publish": "bun scripts/publish-release.ts",
"dev": "bun scripts/build.ts --watch",
"preview": "bun run build && bun scripts/preview.ts",
"build:min": "bun scripts/build.ts --minify",
"test": "bun run build && bun scripts/verify-theme.ts && bun scripts/verify-generated-theme.ts",
"compose:up": "docker compose -f compose.dev.yaml up -d",
"compose:down": "docker compose -f compose.dev.yaml down",
"compose:logs": "docker compose -f compose.dev.yaml logs -f server",
"docker:test": "bun run build && docker compose -f compose.dev.yaml up -d && bun scripts/verify-docker.ts"
},
"devDependencies": {
"@types/bun": "latest",
"lightningcss": "^1.29.2",
"polished": "^4.3.1"
}
}