initial commit

This commit is contained in:
michael
2026-03-03 17:59:56 -08:00
commit 1c8d5855e6
56 changed files with 11767 additions and 0 deletions

30
packages/web/package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "@dangerousthings/web",
"version": "0.1.0",
"description": "Web CSS theme for the Dangerous Things design system — bevels, glows, form styles",
"license": "MIT",
"main": "dist/index.css",
"exports": {
".": "./dist/index.css",
"./tokens/*": "./dist/tokens/*",
"./components/*": "./dist/components/*",
"./fonts/*": "./dist/fonts/*",
"./theme-registry": {
"types": "./dist/theme-registry.d.ts",
"import": "./dist/theme-registry.js",
"default": "./dist/theme-registry.js"
},
"./dist/*": "./dist/*"
},
"publishConfig": {
"access": "public"
},
"files": ["dist"],
"scripts": {
"build": "node scripts/build.js",
"clean": "rm -rf dist"
},
"dependencies": {
"@dangerousthings/tokens": "*"
}
}