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

View File

@@ -0,0 +1,36 @@
{
"name": "@dangerousthings/tokens",
"version": "0.1.0",
"description": "Canonical design tokens for the Dangerous Things design system",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./brands/*": {
"types": "./dist/brands/*.d.ts",
"import": "./dist/brands/*.js"
},
"./css/*": "./dist/css/*"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && node dist/scripts/generate-css.js",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^25.3.3",
"typescript": "^5.7.0"
}
}