@nl-design-system-community/clippy-components 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.
File without changes
package/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@nl-design-system-community/clippy-components",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "module": "./dist/index.js",
6
+ "exports": {
7
+ ".": {
8
+ "types": "./dist/index.d.ts",
9
+ "import": "./dist/index.js"
10
+ },
11
+ "./*": {
12
+ "import": "./dist/*/index.js",
13
+ "types": "./dist/*/index.d.ts"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist/"
18
+ ],
19
+ "publishConfig": {
20
+ "access": "public",
21
+ "provenance": true
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/nl-design-system/theme-wizard.git",
26
+ "directory": "packages/clippy-components"
27
+ },
28
+ "dependencies": {
29
+ "@amsterdam/design-system-css": "2.2.0",
30
+ "@utrecht/button-css": "3.0.1",
31
+ "@utrecht/combobox-css": "2.0.1",
32
+ "@utrecht/listbox-css": "2.0.1",
33
+ "@utrecht/textbox-css": "3.0.1",
34
+ "lit": "3.3.2",
35
+ "memoize": "10.2.0"
36
+ },
37
+ "devDependencies": {
38
+ "@types/dlv": "1.1.5",
39
+ "@vitest/browser-playwright": "4.0.16",
40
+ "@vitest/coverage-v8": "4.0.16",
41
+ "glob": "13.0.0",
42
+ "playwright": "1.57.0",
43
+ "postcss-lit": "1.3.1",
44
+ "rimraf": "6.1.2",
45
+ "typescript": "5.9.3",
46
+ "vite": "7.3.0",
47
+ "vite-plugin-dts": "4.5.4",
48
+ "vitest": "4.0.16"
49
+ },
50
+ "scripts": {
51
+ "dev": "vite build --watch",
52
+ "types": "tsc -p tsconfig.json --emitDeclarationOnly",
53
+ "type-check": "tsc --noEmit --project tsconfig.json",
54
+ "build": "pnpm run type-check && vite build",
55
+ "clean": "rimraf dist/",
56
+ "lint": "pnpm run --sequential '/^lint:.+$/'",
57
+ "lint:css": "stylelint .",
58
+ "lint:js": "eslint",
59
+ "lint-fix:css": "pnpm run lint:css --fix",
60
+ "lint-fix:js": "eslint --fix",
61
+ "lint-build": "tsc --noEmit --project tsconfig.json",
62
+ "test": "pnpm run '/^test:.+$/'",
63
+ "test-build": "vitest --run --coverage",
64
+ "test-install-browsers": "playwright install chromium",
65
+ "test:unit": "vitest --run",
66
+ "preview": "vite preview"
67
+ }
68
+ }