P1 fondation : tokens layerés, reset, thèmes (base/renovation/aep/tmip), 9 primitives Astro, pont Tailwind 4, démo kitchen sink

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-19 18:31:52 +02:00
commit 795ca7ed4e
28 changed files with 8043 additions and 0 deletions

45
package.json Normal file
View File

@@ -0,0 +1,45 @@
{
"name": "@transformer/ui",
"version": "0.1.0",
"description": "Design system partagé de la constellation trans-former.fr — tokens, thèmes, primitives Astro",
"type": "module",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://git.trans-former.fr/jules/design-system.git"
},
"exports": {
"./tokens.css": "./tokens.css",
"./reset.css": "./reset.css",
"./tailwind.css": "./tailwind.css",
"./theme/*.css": "./theme/*.css",
"./BaseLayout.astro": "./components/BaseLayout.astro",
"./Nav.astro": "./components/Nav.astro",
"./Footer.astro": "./components/Footer.astro",
"./Button.astro": "./components/Button.astro",
"./Card.astro": "./components/Card.astro",
"./Prose.astro": "./components/Prose.astro",
"./Section.astro": "./components/Section.astro",
"./Container.astro": "./components/Container.astro",
"./Reveal.astro": "./components/Reveal.astro",
"./reveal.js": "./js/reveal.js"
},
"files": [
"tokens.css",
"reset.css",
"tailwind.css",
"theme",
"components",
"js",
"README.md",
"PROTOCOLE.md"
],
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview"
},
"devDependencies": {
"astro": "^5.0.0"
}
}