{
  "name": "@digdir/designsystemet-css",
  "version": "1.18.0",
  "description": "CSS for Designsystemet",
  "author": "Designsystemet team",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/digdir/designsystemet.git"
  },
  "homepage": "https://github.com/digdir/designsystemet/tree/main/packages/css",
  "license": "MIT",
  "browser": "dist/src/index.css",
  "exports": {
    "./theme": {
      "types": "./theme/types.d.ts",
      "default": "./dist/theme/designsystemet.css"
    },
    "./theme.css": "./dist/theme/designsystemet.css",
    "./theme/*": "./dist/theme/*",
    ".": {
      "types": "./types.d.ts",
      "default": "./dist/src/index.css"
    },
    "./experimental_v2": {
      "types": "./types.d.ts",
      "default": "./dist/src/v2/index.css"
    },
    "./*": "./dist/src/*"
  },
  "files": [
    "./types.d.ts",
    "theme/types.d.ts",
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "browserslist": [
    "last 2 versions",
    "Firefox ESR",
    "not dead",
    "not ie <= 11",
    "not op_mini all"
  ],
  "keywords": [
    "css",
    "designsystem",
    "designsystemet",
    "digdir"
  ],
  "dependencies": {
    "@digdir/designsystemet-types": "1.18.0"
  },
  "devDependencies": {
    "autoprefixer": "10.5.0",
    "cssnano": "8.0.2",
    "postcss": "8.5.15",
    "postcss-cli": "11.0.1",
    "postcss-import": "16.1.1",
    "postcss-nesting": "14.0.0",
    "rimraf": "6.1.3",
    "tsx": "4.22.4"
  },
  "scripts": {
    "build": "rimraf dist && pnpm build:theme && postcss ./src/*.css --base . --dir ./dist && postcss ./theme/*.css --dir ./dist/theme && postcss ./src/v2/*.css --dir ./dist/src/v2",
    "build:theme": "tsx ../cli/bin/designsystemet.ts tokens build -t ../../design-tokens -o ./theme --experimental-tailwind"
  }
}