-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.1 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@nl-design-system-community/theme-wizard-app",
"private": true,
"version": "0.0.5",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/nl-design-system/theme-wizard.git",
"directory": "packages/theme-wizard-app"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./theme.css": "./theme.css",
"./clippy-tokens.css": "./clippy-tokens.css"
},
"files": [
"dist",
"theme.css",
"clippy-tokens.css"
],
"scripts": {
"dev": "vite build --watch --mode development",
"types": "tsc -p tsconfig.json --emitDeclarationOnly",
"type-check": "tsc --noEmit --project tsconfig.json",
"build": "pnpm run type-check && pnpm run types && vite build",
"clean": "rimraf dist/",
"lint": "pnpm run --sequential '/^lint:.+$/'",
"lint:css": "stylelint .",
"lint:js": "eslint",
"lint-fix:css": "pnpm run lint:css --fix",
"lint-fix:js": "eslint --fix",
"lint-build": "tsc --noEmit --project tsconfig.json",
"test": "pnpm run '/^test:.+$/'",
"test-build": "vitest --run --coverage",
"test-install-browsers": "playwright install chromium",
"test:unit": "vitest --run",
"preview": "vite preview"
},
"dependencies": {
"@amsterdam/design-system-css": "2.2.0",
"@fontsource/fira-sans": "5.2.7",
"@fontsource/source-sans-pro": "5.2.5",
"@gemeente-denhaag/action": "4.1.3",
"@gemeente-denhaag/card": "5.0.6",
"@gemeente-denhaag/side-navigation": "4.0.3",
"@lit/context": "1.1.6",
"@nl-design-system-candidate/code-css": "2.0.5",
"@nl-design-system-candidate/color-sample-css": "1.0.4",
"@nl-design-system-candidate/data-badge-css": "1.0.5",
"@nl-design-system-candidate/link-css": "2.0.3",
"@nl-design-system-candidate/paragraph-css": "2.1.3",
"@nl-design-system-candidate/skip-link-css": "1.0.5",
"@nl-design-system-community/clippy-components": "workspace:*",
"@nl-design-system-community/css-scraper": "workspace:*",
"@nl-design-system-community/design-tokens-schema": "workspace:*",
"@nl-design-system-community/ma-design-tokens": "3.0.0",
"@nl-design-system-unstable/start-design-tokens": "3.0.0",
"@utrecht/button-css": "3.0.1",
"@utrecht/form-field-css": "2.0.1",
"@utrecht/form-field-error-message-css": "2.0.1",
"@utrecht/form-label-css": "2.0.1",
"@utrecht/link-button-css": "2.0.1",
"@utrecht/link-css": "2.0.1",
"@utrecht/link-list-css": "3.0.1",
"@utrecht/select-css": "2.0.1",
"@utrecht/table-css": "2.0.1",
"@utrecht/textbox-css": "3.0.1",
"@utrecht/web-component-library-stencil": "4.0.0",
"colorjs.io": "0.6.0",
"dequal": "2.0.3",
"dlv": "1.1.3",
"dset": "3.1.4",
"lit": "3.3.2",
"rosetta": "1.1.0",
"style-dictionary": "5.1.1",
"zod": "4.3.4"
},
"devDependencies": {
"@types/dlv": "1.1.5",
"@vitest/browser-playwright": "4.0.16",
"@vitest/coverage-v8": "4.0.16",
"playwright": "1.57.0",
"postcss-lit": "1.3.1",
"rimraf": "6.1.2",
"typescript": "5.9.3",
"vite": "7.3.0",
"vitest": "4.0.16"
}
}