@utrecht/component-library-design-tokens 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +288 -0
- package/README.md +3 -0
- package/dist/tokens.json +14722 -0
- package/package.json +38 -0
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"author": "Community for NL Design System",
|
|
4
|
+
"description": "Design tokens metadata for the component library for the Municipality of Utrecht based on the NL Design System architecture",
|
|
5
|
+
"license": "EUPL-1.2",
|
|
6
|
+
"name": "@utrecht/component-library-design-tokens",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist/*.json"
|
|
9
|
+
],
|
|
10
|
+
"keywords": [
|
|
11
|
+
"nl-design-system"
|
|
12
|
+
],
|
|
13
|
+
"private": false,
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git+ssh",
|
|
19
|
+
"url": "git@github.com:nl-design-system/utrecht.git",
|
|
20
|
+
"directory": "packages/component-library-design-tokens"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@nl-design-system-unstable/theme-toolkit": "1.0.0",
|
|
24
|
+
"glob": "10.4.2",
|
|
25
|
+
"lodash.clonedeepwith": "4.5.0",
|
|
26
|
+
"lodash.isplainobject": "4.0.6",
|
|
27
|
+
"lodash.merge": "4.6.2",
|
|
28
|
+
"rimraf": "5.0.7"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "pnpm run '/^build:.*/'",
|
|
32
|
+
"build:property": "node src/build-property.mjs",
|
|
33
|
+
"build:tokens": "node src/build-tokens.mjs",
|
|
34
|
+
"lint-build": "node src/lint-build.mjs",
|
|
35
|
+
"lint-theme": "node src/lint-theme.mjs",
|
|
36
|
+
"clean": "rimraf dist"
|
|
37
|
+
}
|
|
38
|
+
}
|