diff --git a/.npmpackagejsonlintrc.json b/.npmpackagejsonlintrc.json deleted file mode 100644 index 38652b1aa..000000000 --- a/.npmpackagejsonlintrc.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "rules": { - "bin-type": "error", - "config-type": "error", - "description-type": "error", - "devDependencies-type": "error", - "directories-type": "error", - "engines-type": "error", - "files-type": "error", - "homepage-type": "error", - "keywords-type": "error", - "license-type": "error", - "main-type": "error", - "man-type": "error", - "name-format": "error", - "name-type": "error", - "no-caret-version-dependencies": "error", - "no-caret-version-devDependencies": "error", - "no-tilde-version-dependencies": "error", - "no-tilde-version-devDependencies": "error", - "preferGlobal-type": "error", - "private-type": "error", - "repository-type": "error", - "require-author": "error", - "require-bugs": "off", - "require-description": "error", - "require-engines": "off", - "require-homepage": "off", - "require-keywords": "error", - "require-license": "error", - "require-name": "error", - "require-repository": "off", - "require-version": "error", - "scripts-type": "error", - "valid-values-author": "off", - "valid-values-license": ["error", ["EUPL-1.2"]], - "valid-values-name-scope": ["error", ["@rijkshuisstijl-community"]], - "valid-values-private": "off", - "version-format": "error", - "version-type": "error" - } -} diff --git a/apps/rvs.rivm.nl/package.json b/apps/rvs.rivm.nl/package.json index d88004cec..895a55191 100644 --- a/apps/rvs.rivm.nl/package.json +++ b/apps/rvs.rivm.nl/package.json @@ -1,9 +1,9 @@ { + "name": "@rijkshuisstijl-community/rvs.rivm.nl", "version": "1.0.0-alpha.0", "author": "Community for NL Design System", "description": "Storybook based on the NL Design System architecture", "license": "EUPL-1.2", - "name": "@rijkshuisstijl-community/rvs.rivm.nl", "keywords": [ "nl-design-system" ], @@ -14,7 +14,8 @@ }, "repository": { "type": "git+ssh", - "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git" + "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git", + "directory": "apps/rvs.rivm.nl" }, "scripts": { "dev": "next dev", diff --git a/apps/rvs.rivm.nl/src/app/page.tsx b/apps/rvs.rivm.nl/src/app/page.tsx index 6d257b77c..34c62a405 100644 --- a/apps/rvs.rivm.nl/src/app/page.tsx +++ b/apps/rvs.rivm.nl/src/app/page.tsx @@ -1,3 +1,5 @@ +'use client'; + import { Article, Button, ButtonGroup, Heading1, Link, Paragraph } from '@utrecht/component-library-react'; import { Logo } from '@rijkshuisstijl-community/components-react'; import './page.css'; diff --git a/npmpackagejsonlint.config.cjs b/npmpackagejsonlint.config.cjs new file mode 100644 index 000000000..a4a0348d2 --- /dev/null +++ b/npmpackagejsonlint.config.cjs @@ -0,0 +1,19 @@ +module.exports = { + rules: { + 'no-caret-version-dependencies': 'error', + 'no-caret-version-devDependencies': 'error', + 'no-tilde-version-dependencies': 'error', + 'no-tilde-version-devDependencies': 'error', + 'require-repository-directory': 'error', + 'valid-values-license': ['error', ['EUPL-1.2']], + 'valid-values-name-scope': ['error', ['@rijkshuisstijl-community']], + }, + overrides: [ + { + patterns: ['proprietary/**/package.json'], + rules: { + 'valid-values-license': ['error', ['SEE LICENSE IN LICENSE.md']], + }, + }, + ], +}; diff --git a/package.json b/package.json index 44823baba..c7b5f19ba 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,18 @@ { + "name": "@rijkshuisstijl-community/design-system", "version": "1.0.0-alpha.0", "author": "Community for NL Design System", "description": "Design system based on the NL Design System architecture", "license": "EUPL-1.2", - "name": "@rijkshuisstijl-community/design-system", "keywords": [ "nl-design-system" ], "private": true, + "repository": { + "type": "git+ssh", + "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git", + "directory": "." + }, "engines": { "node": "^20", "pnpm": "^9" diff --git a/packages/components-css/package.json b/packages/components-css/package.json index 7edb2c5c9..81955c7fc 100644 --- a/packages/components-css/package.json +++ b/packages/components-css/package.json @@ -1,9 +1,9 @@ { + "name": "@rijkshuisstijl-community/components-css", "version": "1.0.0-alpha.23", "author": "Community for NL Design System", "description": "CSS Components for a design system based on the NL Design System architecture", "license": "EUPL-1.2", - "name": "@rijkshuisstijl-community/components-css", "keywords": [ "nl-design-system" ], @@ -11,5 +11,10 @@ "publishConfig": { "access": "restricted", "registry": "https://registry.npmjs.org/" + }, + "repository": { + "type": "git+ssh", + "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git", + "directory": "packages/components-css" } } diff --git a/packages/components-react/package.json b/packages/components-react/package.json index afbce658f..62d8163b8 100644 --- a/packages/components-react/package.json +++ b/packages/components-react/package.json @@ -1,9 +1,9 @@ { + "name": "@rijkshuisstijl-community/components-react", "version": "1.0.0-alpha.0", "author": "Community for NL Design System", "description": "React component library for the Rijkshuisstijl Community repository, based on the NL Design System architecture", "license": "EUPL-1.2", - "name": "@rijkshuisstijl-community/components-react", "keywords": [ "nl-design-system" ], @@ -14,7 +14,8 @@ }, "repository": { "type": "git+ssh", - "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git" + "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git", + "directory": "packages/components-react" }, "scripts": { "prebuild": "npm run clean", @@ -33,6 +34,7 @@ ], "sideEffects": false, "dependencies": { + "@utrecht/component-library-react": "5.0.0", "clsx": "2.1.1", "date-fns": "3.6.0", "lodash.chunk": "4.2.0" diff --git a/packages/components-react/src/index.ts b/packages/components-react/src/index.ts index b5be9c8f7..b3b7e106a 100644 --- a/packages/components-react/src/index.ts +++ b/packages/components-react/src/index.ts @@ -1,3 +1,6 @@ +// Export all Utrecht components +export * from '@utrecht/component-library-react/dist/css-module'; + export { Button } from './Button'; export { Logo } from './Logo'; export type { LogoProps } from './Logo'; diff --git a/packages/storybook/package.json b/packages/storybook/package.json index 4bf783bba..002198b62 100644 --- a/packages/storybook/package.json +++ b/packages/storybook/package.json @@ -1,9 +1,9 @@ { + "name": "@rijkshuisstijl-community/storybook", "version": "1.0.0-alpha.0", "author": "Community for NL Design System", "description": "Storybook based on the NL Design System architecture", "license": "EUPL-1.2", - "name": "@rijkshuisstijl-community/storybook", "keywords": [ "nl-design-system" ], @@ -14,7 +14,8 @@ }, "repository": { "type": "git+ssh", - "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git" + "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git", + "directory": "packages/storybook" }, "scripts": { "build": "storybook build --output-dir dist/ --config-dir config/", diff --git a/packages/web-components-react/package.json b/packages/web-components-react/package.json index e8b859f05..f63509702 100644 --- a/packages/web-components-react/package.json +++ b/packages/web-components-react/package.json @@ -1,9 +1,9 @@ { + "name": "@rijkshuisstijl-community/web-components-react", "version": "1.0.0-alpha.5", "author": "Community for NL Design System", "description": "React web components bundle based on the NL Design System architecture", "license": "EUPL-1.2", - "name": "@rijkshuisstijl-community/web-components-react", "keywords": [ "nl-design-system" ], @@ -14,7 +14,8 @@ }, "repository": { "type": "git+ssh", - "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git" + "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git", + "directory": "packages/web-components-react" }, "sideEffects": false, "scripts": { diff --git a/packages/web-components-stencil/package.json b/packages/web-components-stencil/package.json index 9c4d58458..6b202342e 100644 --- a/packages/web-components-stencil/package.json +++ b/packages/web-components-stencil/package.json @@ -1,9 +1,9 @@ { + "name": "@rijkshuisstijl-community/web-components-stencil", "version": "1.0.0-alpha.5", "author": "Community for NL Design System", "description": "Stencil web components bundle based on the NL Design System architecture", "license": "EUPL-1.2", - "name": "@rijkshuisstijl-community/web-components-stencil", "keywords": [ "nl-design-system" ], @@ -26,7 +26,8 @@ ], "repository": { "type": "git+ssh", - "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git" + "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git", + "directory": "packages/web-components-stencil" }, "scripts": { "prebuild": "npm run clean", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f114a2171..bb0cc66da 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -144,6 +144,9 @@ importers: packages/components-react: dependencies: + '@utrecht/component-library-react': + specifier: 5.0.0 + version: 5.0.0(@babel/runtime@7.24.8)(date-fns@3.6.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) clsx: specifier: 2.1.1 version: 2.1.1 @@ -2800,6 +2803,23 @@ packages: vega: optional: true + '@utrecht/component-library-react@5.0.0': + resolution: {integrity: sha512-D8wSfBl1rCLA5zNj1wND2QaHBrlW5T5qZjlqvcYmQdvOOF+L+aQ8gxg3uo30FBvugvH2HDfOCc6qD8z7/+R+0A==} + peerDependencies: + '@babel/runtime': ^7.23.6 + date-fns: ^2.30.0 + react: '18' + react-dom: '18' + react-vega: ^7.6.0 + vega: ^5.25.0 + peerDependenciesMeta: + date-fns: + optional: true + react-vega: + optional: true + vega: + optional: true + '@utrecht/web-component-library-react@1.2.0': resolution: {integrity: sha512-M//AVotO1tqBeC9aTta1hso/0N6npHyk2JAU63iHL8CA3INaThXQOJqAopy3D+CZa7ao8FIG1LszK96JQW6R0A==} peerDependencies: @@ -11605,6 +11625,16 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + '@utrecht/component-library-react@5.0.0(@babel/runtime@7.24.8)(date-fns@3.6.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.24.8 + clsx: 2.1.1 + lodash.chunk: 4.2.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + date-fns: 3.6.0 + '@utrecht/web-component-library-react@1.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@utrecht/web-component-library-stencil': 1.3.0 diff --git a/proprietary/.npmpackagejsonlintrc.json b/proprietary/.npmpackagejsonlintrc.json deleted file mode 100644 index 9413d8f60..000000000 --- a/proprietary/.npmpackagejsonlintrc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "rules": { - "valid-values-license": ["error", ["SEE LICENSE IN LICENSE.md"]] - } -} diff --git a/proprietary/assets/package.json b/proprietary/assets/package.json index 98f3e476c..465d59c18 100644 --- a/proprietary/assets/package.json +++ b/proprietary/assets/package.json @@ -1,9 +1,9 @@ { + "name": "@rijkshuisstijl-community/assets", "version": "1.0.0-alpha.23", "author": "Community for NL Design System", "description": "Assets", "license": "SEE LICENSE IN LICENSE.md", - "name": "@rijkshuisstijl-community/assets", "keywords": [ "nl-design-system" ], @@ -15,6 +15,7 @@ "files": [], "repository": { "type": "git+ssh", - "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git" + "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git", + "directory": "proprietary/assets" } } diff --git a/proprietary/design-tokens/figma/figma.tokens.json b/proprietary/design-tokens/figma/figma.tokens.json index 2f4c72de4..d4502b80c 100644 --- a/proprietary/design-tokens/figma/figma.tokens.json +++ b/proprietary/design-tokens/figma/figma.tokens.json @@ -1746,47 +1746,47 @@ "todo": { "breadcrumb": { "line-height": { - "value": "{utrecht.document.line-height}", + "value": "{rhc.line-height.paragraph}", "type": "lineHeights" }, "font-size": { - "value": "{utrecht.document.font-size}", + "value": "{rhc.font-size.paragraph.default}", "type": "fontSizes" }, "link": { "icon": { "size": { - "value": "{rhc.icon.functional.size}", + "value": "{rhc.size.icon.functional}", "type": "sizing" }, "margin-inline": { - "value": "{voorbeeld.space.text.beetle}", + "value": "{rhc.space.50}", "type": "spacing" } }, "padding-block-end": { - "value": "{voorbeeld.space.block.snail}", + "value": "{rhc.space.150}", "type": "spacing" }, "padding-block-start": { - "value": "{voorbeeld.space.block.snail}", + "value": "{rhc.space.150}", "type": "spacing" }, "padding-inline-end": { - "value": "0px", + "value": "{rhc.space.0}", "type": "spacing" }, "padding-inline-start": { - "value": "0px", + "value": "{rhc.space.0}", "type": "spacing" }, "color": { - "value": "{utrecht.interaction.color}", + "value": "{rhc.color.foreground.link}", "type": "color" }, "active": { "color": { - "value": "{utrecht.interaction.active.color}", + "value": "{rhc.color.paars.500}", "type": "color" }, "text-decoration": { @@ -1796,11 +1796,11 @@ }, "focus": { "background-color": { - "value": "{rhc.focus.background-color}", + "value": "transparent", "type": "color" }, "color": { - "value": "{rhc.focus.color}", + "value": "{rhc.color.foreground.link}", "type": "color" }, "text-decoration": { @@ -1810,8 +1810,17 @@ }, "hover": { "color": { - "value": "{utrecht.interaction.hover.color}", - "type": "color" + "value": "{rhc.color.foreground.link}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "darken", + "value": "0.3", + "space": "srgb" + } + } + } }, "text-decoration": { "value": "None", @@ -1820,7 +1829,7 @@ }, "current": { "color": { - "value": "{utrecht.document.subtle.color}", + "value": "{rhc.color.foreground.subdued}", "type": "color" } }, @@ -1831,24 +1840,24 @@ }, "divider": { "size": { - "value": "{voorbeeld.size.2xs}", + "value": "{rhc.size.icon.functional}", "type": "sizing" }, "color": { - "value": "{utrecht.document.subtle.color}", + "value": "{rhc.color.foreground.subdued}", "type": "color" } }, "margin-inline": { - "value": "{voorbeeld.space.inline.beetle}", + "value": "{rhc.space.100}", "type": "spacing" }, "font-family": { - "value": "{utrecht.document.font-family}", + "value": "{rhc.font-family.primary}", "type": "fontFamilies" }, "font-weight": { - "value": "{utrecht.document.font-weight}", + "value": "{rhc.font-weight.regular}", "type": "fontWeights" } } @@ -2936,7 +2945,7 @@ "type": "fontWeights" }, "line-height": { - "value": "{rhc.line-height.sm}", + "value": "{voorbeeld.typography.line-height.sm}", "type": "lineHeights" }, "font-size": { @@ -2966,7 +2975,7 @@ "type": "fontWeights" }, "line-height": { - "value": "{rhc.line-height.sm}", + "value": "{voorbeeld.typography.line-height.sm}", "type": "lineHeights" }, "font-size": { @@ -2996,7 +3005,7 @@ "type": "fontWeights" }, "line-height": { - "value": "{rhc.line-height.sm}", + "value": "{voorbeeld.typography.line-height.sm}", "type": "lineHeights" }, "font-size": { @@ -3026,7 +3035,7 @@ "type": "fontWeights" }, "line-height": { - "value": "{rhc.line-height.sm}", + "value": "{voorbeeld.typography.line-height.md}", "type": "lineHeights" }, "font-size": { @@ -3056,7 +3065,7 @@ "type": "fontWeights" }, "line-height": { - "value": "{rhc.line-height.sm}", + "value": "{voorbeeld.typography.line-height.md}", "type": "lineHeights" }, "font-size": { @@ -3068,7 +3077,37 @@ "type": "spacing" }, "margin-block-start": { - "value": "{rhc.space.0}", + "value": "{voorbeeld.space.block.beetle}", + "type": "spacing" + } + }, + "heading-6": { + "color": { + "value": "{utrecht.heading.color}", + "type": "color" + }, + "font-family": { + "value": "{utrecht.heading.font-family}", + "type": "fontFamilies" + }, + "font-weight": { + "value": "{utrecht.heading.font-weight}", + "type": "fontWeights" + }, + "line-height": { + "value": "{voorbeeld.typography.line-height.md}", + "type": "lineHeights" + }, + "font-size": { + "value": "{voorbeeld.typography.font-size.sm}", + "type": "fontSizes" + }, + "margin-block-end": { + "value": "{voorbeeld.space.block.beetle}", + "type": "spacing" + }, + "margin-block-start": { + "value": "{voorbeeld.space.block.beetle}", "type": "spacing" } } @@ -3339,36 +3378,36 @@ "utrecht": { "ordered-list": { "padding-inline-start": { - "value": "{voorbeeld.space.inline.rabbit}", + "value": "{rhc.space.300}", "type": "spacing" }, "color": { - "value": "{utrecht.document.color}", + "value": "{rhc.color.foreground.lint}", "type": "color" }, "font-family": { - "value": "{utrecht.document.font-family}", + "value": "{rhc.font-family.primary}", "type": "fontFamilies" }, "font-weight": { - "value": "{utrecht.document.font-weight}", + "value": "{rhc.font-weight.regular}", "type": "fontWeights" }, "font-size": { - "value": "{utrecht.document.font-size}", + "value": "{rhc.font-size.paragraph.default}", "type": "fontSizes" }, "line-height": { - "value": "{utrecht.document.line-height}", + "value": "{rhc.line-height.paragraph}", "type": "lineHeights" }, "item": { "margin-block-end": { - "value": "{voorbeeld.space.block.ant}", + "value": "{rhc.space.50}", "type": "spacing" }, "margin-block-start": { - "value": "{voorbeeld.space.block.ant}", + "value": "{rhc.space.50}", "type": "spacing" } } @@ -3687,68 +3726,68 @@ "utrecht": { "paragraph": { "color": { - "value": "{utrecht.document.color}", + "value": "{rhc.color.foreground.lint}", "type": "color" }, "font-family": { - "value": "{utrecht.document.font-family}", + "value": "{rhc.font-family.primary}", "type": "fontFamilies" }, "font-size": { - "value": "{utrecht.document.font-size}", + "value": "{rhc.font-size.paragraph.default}", "type": "fontSizes" }, "font-weight": { - "value": "{utrecht.document.font-weight}", + "value": "{rhc.font-weight.regular}", "type": "fontWeights" }, "line-height": { - "value": "{utrecht.document.line-height}", + "value": "{rhc.line-height.paragraph}", "type": "lineHeights" }, "margin-block-end": { - "value": "{voorbeeld.space.block.beetle}", + "value": "{rhc.space.0}", "type": "spacing" }, "margin-block-start": { - "value": "{voorbeeld.space.block.beetle}", + "value": "{rhc.space.0}", "type": "spacing" - } - }, - "paragraph-lead": { - "color": { - "value": "{utrecht.document.color}", - "type": "color" - }, - "font-size": { - "value": "{voorbeeld.typography.font-size.lg}", - "type": "fontSizes" }, - "font-weight": { - "value": "{utrecht.document.font-weight}", - "type": "fontWeights" - }, - "line-height": { - "value": "{utrecht.document.line-height}", - "type": "lineHeights" - } - }, - "paragraph-small-print": { - "color": { - "value": "{utrecht.document.color}", - "type": "color" - }, - "font-size": { - "value": "{voorbeeld.typography.font-size.sm}", - "type": "fontSizes" - }, - "font-weight": { - "value": "{utrecht.document.font-weight}", - "type": "fontWeights" + "lead": { + "color": { + "value": "{rhc.color.foreground.lint}", + "type": "color" + }, + "font-size": { + "value": "{rhc.font-size.paragraph.intro}", + "type": "fontSizes" + }, + "font-weight": { + "value": "{rhc.font-weight.regular}", + "type": "fontWeights" + }, + "line-height": { + "value": "{rhc.line-height.paragraph}", + "type": "lineHeights" + } }, - "line-height": { - "value": "{utrecht.document.line-height}", - "type": "lineHeights" + "small": { + "color": { + "value": "{rhc.color.foreground.lint}", + "type": "color" + }, + "font-size": { + "value": "{rhc.font-size.paragraph.default}", + "type": "fontSizes" + }, + "font-weight": { + "value": "{rhc.font-weight.regular}", + "type": "fontWeights" + }, + "line-height": { + "value": "{rhc.line-height.paragraph}", + "type": "lineHeights" + } } } } @@ -4122,48 +4161,48 @@ "sidenav": { "link": { "line-height": { - "value": "{utrecht.document.line-height}", + "value": "{rhc.line-height.paragraph}", "type": "lineHeights" }, "icon": { "size": { - "value": "{rhc.icon.functional.size}", + "value": "{rhc.size.icon.functional}", "type": "sizing" }, "margin-inline": { - "value": "{voorbeeld.space.text.mouse}", + "value": "{rhc.space.100}", "type": "spacing" } }, "font-size": { - "value": "{utrecht.document.font-size}", + "value": "{rhc.font-size.paragraph.default}", "type": "fontSizes" }, "font-family": { - "value": "{utrecht.document.font-family}", + "value": "{rhc.font-family.primary}", "type": "fontFamilies" }, "font-weight": { - "value": "{utrecht.document.font-weight}", + "value": "{rhc.font-weight.regular}", "type": "fontWeights" }, "current": { "font-weight": { - "value": "{utrecht.document.strong.font-weight}", + "value": "{rhc.font-weight.bold}", "type": "fontWeights" }, "color": { - "value": "{utrecht.document.color}", + "value": "{rhc.color.foreground.lint}", "type": "color" } }, "color": { - "value": "{utrecht.interaction.color}", + "value": "{rhc.color.foreground.link}", "type": "color" }, "active": { "color": { - "value": "{utrecht.interaction.active.color}", + "value": "{rhc.color.paars.500}", "type": "color" }, "text-decoration": { @@ -4173,11 +4212,11 @@ }, "focus": { "background-color": { - "value": "{rhc.focus.background-color}", + "value": "none", "type": "color" }, "color": { - "value": "{rhc.focus.color}", + "value": "{rhc.color.foreground.link}", "type": "color" }, "text-decoration": { @@ -4187,8 +4226,17 @@ }, "hover": { "color": { - "value": "{utrecht.interaction.hover.color}", - "type": "color" + "value": "{rhc.color.foreground.link}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "darken", + "value": "0.3", + "space": "lch" + } + } + } }, "text-decoration": { "value": "underline", @@ -4196,11 +4244,11 @@ } }, "padding-block-start": { - "value": "{voorbeeld.space.block.snail}", + "value": "{rhc.space.150}", "type": "spacing" }, "padding-block-end": { - "value": "{voorbeeld.space.block.snail}", + "value": "{rhc.space.150}", "type": "spacing" }, "text-decoration": { diff --git a/proprietary/design-tokens/package.json b/proprietary/design-tokens/package.json index 1fba40b2d..1135d90b0 100644 --- a/proprietary/design-tokens/package.json +++ b/proprietary/design-tokens/package.json @@ -1,9 +1,9 @@ { + "name": "@rijkshuisstijl-community/design-tokens", "version": "1.0.0-alpha.24", "author": "Community for NL Design System", "description": "Example design tokens", "license": "SEE LICENSE IN LICENSE.md", - "name": "@rijkshuisstijl-community/design-tokens", "keywords": [ "nl-design-system" ], @@ -14,7 +14,8 @@ }, "repository": { "type": "git+ssh", - "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git" + "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git", + "directory": "proprietary/design-tokens" }, "scripts": { "clean": "rimraf dist/* src/generated/*", diff --git a/proprietary/digid-design-tokens/package.json b/proprietary/digid-design-tokens/package.json index cfd314dc8..acf278639 100644 --- a/proprietary/digid-design-tokens/package.json +++ b/proprietary/digid-design-tokens/package.json @@ -1,9 +1,9 @@ { + "name": "@rijkshuisstijl-community/digid-design-tokens", "version": "1.0.0-alpha.15", "author": "Community for NL Design System", "description": "DigiD design tokens", "license": "SEE LICENSE IN LICENSE.md", - "name": "@rijkshuisstijl-community/digid-design-tokens", "keywords": [ "nl-design-system" ], @@ -14,7 +14,8 @@ }, "repository": { "type": "git+ssh", - "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git" + "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git", + "directory": "proprietary/digid-design-tokens" }, "scripts": { "clean": "rimraf dist/ tmp/", diff --git a/proprietary/font/package.json b/proprietary/font/package.json index e203fba42..ce8d1de94 100644 --- a/proprietary/font/package.json +++ b/proprietary/font/package.json @@ -1,9 +1,9 @@ { + "name": "@rijkshuisstijl-community/font", "version": "1.0.0-alpha.23", "author": "Community for NL Design System", "description": "Font assets", "license": "SEE LICENSE IN LICENSE.md", - "name": "@rijkshuisstijl-community/font", "main": "dist/index.css", "keywords": [ "nl-design-system" @@ -18,6 +18,7 @@ ], "repository": { "type": "git+ssh", - "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git" + "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git", + "directory": "proprietary/font" } } diff --git a/proprietary/logius-design-tokens/package.json b/proprietary/logius-design-tokens/package.json index 83251020c..5cd1692f7 100644 --- a/proprietary/logius-design-tokens/package.json +++ b/proprietary/logius-design-tokens/package.json @@ -1,9 +1,9 @@ { + "name": "@rijkshuisstijl-community/logius-design-tokens", "version": "1.0.0-alpha.16", "author": "Community for NL Design System", "description": "Logius design tokens", "license": "SEE LICENSE IN LICENSE.md", - "name": "@rijkshuisstijl-community/logius-design-tokens", "keywords": [ "nl-design-system" ], @@ -14,7 +14,8 @@ }, "repository": { "type": "git+ssh", - "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git" + "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git", + "directory": "proprietary/logius-design-tokens" }, "scripts": { "clean": "rimraf dist/ tmp/", diff --git a/proprietary/mijnoverheid-design-tokens/package.json b/proprietary/mijnoverheid-design-tokens/package.json index ebd21ac8e..b3cfdccca 100644 --- a/proprietary/mijnoverheid-design-tokens/package.json +++ b/proprietary/mijnoverheid-design-tokens/package.json @@ -1,9 +1,9 @@ { + "name": "@rijkshuisstijl-community/mijnoverheid-design-tokens", "version": "1.0.0-alpha.15", "author": "Community for NL Design System", "description": "MijnOverheid design tokens", "license": "SEE LICENSE IN LICENSE.md", - "name": "@rijkshuisstijl-community/mijnoverheid-design-tokens", "keywords": [ "nl-design-system" ], @@ -14,7 +14,8 @@ }, "repository": { "type": "git+ssh", - "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git" + "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git", + "directory": "proprietary/mijnoverheid-design-tokens" }, "scripts": { "clean": "rimraf dist/ tmp/", diff --git a/proprietary/rivm-design-tokens/package.json b/proprietary/rivm-design-tokens/package.json index a7854ca5f..e1a0c3a3a 100644 --- a/proprietary/rivm-design-tokens/package.json +++ b/proprietary/rivm-design-tokens/package.json @@ -1,9 +1,9 @@ { + "name": "@rijkshuisstijl-community/rivm-design-tokens", "version": "1.0.0-alpha.9", "author": "Community for NL Design System", "description": "RIVM design tokens", "license": "SEE LICENSE IN LICENSE.md", - "name": "@rijkshuisstijl-community/rivm-design-tokens", "keywords": [ "nl-design-system" ], @@ -14,7 +14,8 @@ }, "repository": { "type": "git+ssh", - "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git" + "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git", + "directory": "proprietary/rivm-design-tokens" }, "scripts": { "clean": "rimraf dist/ tmp/",