Files
whynot-design/package.json
tegwick 5b8b59597a
Some checks failed
ci / check (push) Has been cancelled
ci / release (push) Has been cancelled
release: v0.4.0
2026-06-29 00:40:09 +02:00

75 lines
2.7 KiB
JSON

{
"name": "@whynot/design",
"version": "0.4.0",
"description": "The neutral, mostly-black-and-white visual language for whynot — prototype cards, signal records, beta plans, decision documents, and any other deliberately-unfinished artefact. Ships tokens, CSS, and Lit-based web components consumable from React, Django, Vue, plain HTML, or anywhere a custom element runs.",
"private": false,
"type": "module",
"main": "./src/index.js",
"module": "./src/index.js",
"bin": {
"whynot-design": "./bin/whynot-design.mjs"
},
"exports": {
".": "./src/index.js",
"./atoms": "./src/elements/atoms.js",
"./form": "./src/elements/form.js",
"./layout": "./src/elements/layout.js",
"./chrome": "./src/elements/chrome.js",
"./icons": "./src/elements/icons.js",
"./styles/colors_and_type.css": "./src/styles/colors_and_type.css",
"./styles/components.css": "./src/styles/components.css",
"./styles": "./src/styles/colors_and_type.css",
"./tokens": "./tokens/index.json",
"./tokens/colors": "./tokens/colors.json",
"./tokens/type": "./tokens/type.json",
"./tokens/spacing": "./tokens/spacing.json",
"./adapters/django": "./adapters/django/README.md",
"./ir/*": "./ir/*",
"./assets/*": "./assets/*",
"./skill": "./SKILL.md"
},
"files": [
"src",
"bin",
"tokens",
"ir",
"assets",
"adapters",
"CONSUMING.md",
"SKILL.md",
"DesignSystemIntroduction.md",
"MultiFrameworkSupport.md",
"PUBLISHING.md",
"README.md",
"CHANGELOG.md"
],
"sideEffects": [
"**/*.css",
"./src/index.js",
"./src/elements/*.js"
],
"scripts": {
"check": "node ./scripts/check-changelog.mjs",
"test:visual": "playwright test",
"test:visual:update": "playwright test --update-snapshots",
"showcase": "npx --yes serve -l 4321 .",
"example": "npx --yes serve -l 4322 examples/whynot-control"
},
"peerDependencies": {
"lit": "^3"
},
"devDependencies": {
"@playwright/test": "^1.45.0",
"lit": "^3.2.1"
},
"keywords": ["whynot", "design-system", "wireframe", "prototype", "lit", "web-components", "django", "react"],
"repository": {
"type": "git",
"url": "git+ssh://git@gitea.coulomb.social/coulomb/whynot-design.git"
},
"publishConfig": {
"registry": "https://gitea.coulomb.social/api/packages/coulomb/npm/"
},
"license": "UNLICENSED"
}