Problem: the hexagonal refactor churns the backend tree for nine more phases; the UI delivery stack (web/ SPA, cmd/desktop Wails wrapper, compose/web image) must move to its own repo first so doc/layout rewrites land once on a backend-only tree. Change: - New repo git.hubris.network/dtoro/oikos-web (v0.33.0): web/, desktop/ (updateURL repointed to oikos-web releases), compose/, own CI (web + desktop jobs), own deploy script (CI-green gate, TOCTOU guard, version-tagged images, prune-to-3), own webhook receiver on :9798 + launchd unit, own compose project publishing the same 8091:80. - Cutover executed on mac-mini in order: oikos stack's web service stopped+removed, oikos-web project brought up on 8091; outer Caddy untouched (targets the published port) — serving + Authentik flow + /wails 404 quirk verified post-cutover. - Stripped from oikos: web/, cmd/desktop/, compose/web/, desktop CI workflow, ci.yml web job, Makefile ui/desktop/desktop-package/install targets, the compose web service, oikos-web from deploy.sh's fallback prune list; wails + go-keyring dropped from go.mod, vendor synced. - README / CONTRIBUTING / AGENTS.md / .agents dev+operations docs now point at the new repo; mbse + mascot design docs carry a path note. Risk: production SPA serving depends on the new pipeline now; rollback is versioned-image re-up of the old web service from a pre-split checkout (port 8091). Desktop builds installed before the split still check dtoro/oikos releases — one manual reinstall, noted in the oikos-web release notes. Verification: go vet, make test (race), make generate-check, golangci (no new findings; baseline down 400→365); post-cutover curls — localhost:8091 200, /wails/runtime.js 404, outer Caddy 302 Authentik.
79 lines
2.8 KiB
JSON
79 lines
2.8 KiB
JSON
{
|
|
"name": "@lucide/svelte",
|
|
"description": "A Lucide icon library package for Svelte applications.",
|
|
"version": "1.28.0",
|
|
"license": "ISC",
|
|
"homepage": "https://lucide.dev",
|
|
"bugs": "https://github.com/lucide-icons/lucide/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/lucide-icons/lucide.git",
|
|
"directory": "packages/svelte"
|
|
},
|
|
"keywords": [
|
|
"Lucide",
|
|
"Svelte",
|
|
"Feather",
|
|
"Icons",
|
|
"Icon",
|
|
"SVG",
|
|
"Feather Icons",
|
|
"Fontawesome",
|
|
"Font Awesome"
|
|
],
|
|
"author": "Eric Fennis",
|
|
"type": "module",
|
|
"main": "dist/lucide-svelte.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/lucide-svelte.d.ts",
|
|
"svelte": "./dist/lucide-svelte.js",
|
|
"default": "./dist/lucide-svelte.js"
|
|
},
|
|
"./icons": {
|
|
"types": "./dist/lucide-svelte.d.ts",
|
|
"svelte": "./dist/lucide-svelte.js"
|
|
},
|
|
"./icons/*": {
|
|
"types": "./dist/icons/*.svelte.d.ts",
|
|
"svelte": "./dist/icons/*.js",
|
|
"default": "./dist/icons/*.js"
|
|
}
|
|
},
|
|
"typings": "dist/lucide-svelte.d.ts",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"devDependencies": {
|
|
"@sveltejs/package": "^2.5.8",
|
|
"@sveltejs/vite-plugin-svelte": "^6.2.4",
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/svelte": "^5.4.2",
|
|
"@tsconfig/svelte": "^5.0.8",
|
|
"jest-serializer-html": "^7.1.0",
|
|
"jsdom": "^27.4.0",
|
|
"svelte": "^5.56.5",
|
|
"svelte-check": "^4.7.2",
|
|
"svelte-preprocess": "^6.0.5",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^7.3.6",
|
|
"@lucide/build-icons": "1.1.0",
|
|
"@lucide/helpers": "1.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"svelte": "^5"
|
|
},
|
|
"scripts": {
|
|
"build": "pnpm clean && pnpm copy:license && pnpm copy:utils && pnpm build:icons && pnpm build:package && pnpm build:license",
|
|
"copy:license": "cp ../../LICENSE ./LICENSE",
|
|
"copy:utils": "mkdir -p ./src/utils && cp -rf ../../packages/shared/src/utils/hasA11yProp.ts ./src/utils/",
|
|
"clean": "rm -rf dist stats ./src/icons/*.{ts,svelte} ./src/aliases/{aliases,prefixed,suffixed}.ts",
|
|
"build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mts --exportFileName=index.ts --iconFileExtension=.svelte --importImportFileExtension=.svelte --separateIconFileExport --separateIconFileExportExtension=.ts --withAliases --aliasesFileExtension=.ts --separateAliasesFile --separateAliasesFileExtension=.ts --aliasImportFileExtension=.js --pretty=false",
|
|
"build:package": "svelte-package --input ./src",
|
|
"build:license": "node ./scripts/appendBlockComments.mts",
|
|
"test": "pnpm copy:license && pnpm copy:utils && pnpm build:icons && vitest run",
|
|
"test:watch": "vitest watch",
|
|
"typecheck": "pnpm copy:license && pnpm copy:utils && pnpm build:icons && svelte-check --tsconfig ./tsconfig.json"
|
|
}
|
|
} |