{ "name": "@dangerousthings/tokens", "version": "0.3.0", "description": "Canonical design tokens for the Dangerous Things design system", "license": "MIT", "author": { "name": "Dangerous Things", "email": "info@dangerousthings.com" }, "repository": { "type": "git", "url": "https://github.com/dangerous-tac0s/dt-design-system.git", "directory": "packages/tokens" }, "homepage": "https://github.com/dangerous-tac0s/dt-design-system#readme", "keywords": [ "dangerousthings", "design-system", "design-tokens", "css-custom-properties", "theming" ], "engines": { "node": ">=18.0.0" }, "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" } }