@lux-design-system/components-react 0.0.0-canary-20241011132513

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.
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vite').UserConfig;
2
+ export default _default;
package/package.json ADDED
@@ -0,0 +1,95 @@
1
+ {
2
+ "version": "0.0.0-canary-20241011132513",
3
+ "author": "Community for NL Design System",
4
+ "description": "React component library for LUX, the Design System for Logius, based on the NL Design System architecture",
5
+ "license": "EUPL-1.2",
6
+ "name": "@lux-design-system/components-react",
7
+ "keywords": [
8
+ "nl-design-system",
9
+ "lux-design-system"
10
+ ],
11
+ "private": false,
12
+ "publishConfig": {
13
+ "access": "public"
14
+ },
15
+ "repository": {
16
+ "type": "git+ssh",
17
+ "url": "git@github.com:nl-design-system/lux-community.git",
18
+ "directory": "packages/components-react"
19
+ },
20
+ "main": "./dist/index.umd.js",
21
+ "module": "./dist/index.mjs",
22
+ "types": "./dist/src/index.d.ts",
23
+ "exports": {
24
+ ".": {
25
+ "import": "./dist/index.mjs",
26
+ "require": "./dist/index.umd.cjs"
27
+ }
28
+ },
29
+ "files": [
30
+ "dist/"
31
+ ],
32
+ "dependencies": {
33
+ "@utrecht/component-library-css": "6.0.0",
34
+ "@utrecht/component-library-react": "7.0.0",
35
+ "clsx": "2.1.1",
36
+ "date-fns": "3.6.0",
37
+ "lodash.chunk": "4.2.0"
38
+ },
39
+ "devDependencies": {
40
+ "@babel/core": "7.25.2",
41
+ "@babel/plugin-transform-runtime": "7.24.7",
42
+ "@babel/preset-env": "7.25.3",
43
+ "@babel/preset-react": "7.24.7",
44
+ "@babel/preset-typescript": "7.24.7",
45
+ "@babel/runtime": "7.25.0",
46
+ "@jest/globals": "29.7.0",
47
+ "@rollup/plugin-babel": "6.0.4",
48
+ "@rollup/plugin-commonjs": "26.0.1",
49
+ "@rollup/plugin-node-resolve": "15.2.3",
50
+ "@testing-library/dom": "10.4.0",
51
+ "@testing-library/jest-dom": "6.4.8",
52
+ "@testing-library/react": "16.0.0",
53
+ "@testing-library/user-event": "14.5.2",
54
+ "@types/jest": "29.5.12",
55
+ "@types/lodash.chunk": "4.2.9",
56
+ "@types/react": "18.3.3",
57
+ "@vitejs/plugin-react": "4.3.1",
58
+ "cross-env": "7.0.3",
59
+ "jest": "29.7.0",
60
+ "jest-environment-jsdom": "29.7.0",
61
+ "mkdirp": "3.0.1",
62
+ "next": "14.2.5",
63
+ "npm-run-all": "4.1.5",
64
+ "react": "18.3.1",
65
+ "react-dom": "18.3.1",
66
+ "rimraf": "6.0.1",
67
+ "rollup": "4.20.0",
68
+ "rollup-plugin-filesize": "10.0.0",
69
+ "rollup-plugin-node-externals": "7.1.2",
70
+ "rollup-plugin-node-polyfills": "0.2.1",
71
+ "rollup-plugin-peer-deps-external": "2.2.4",
72
+ "rollup-plugin-postcss": "4.0.2",
73
+ "rollup-plugin-typescript2": "0.36.0",
74
+ "sass": "1.77.8",
75
+ "tslib": "2.6.3",
76
+ "typescript": "5.5.4",
77
+ "vite": "5.3.5",
78
+ "vite-plugin-dts": "4.2.3",
79
+ "vite-plugin-runtime-config": "1.0.2",
80
+ "@lux-design-system/components-css": "1.0.0-alpha.0"
81
+ },
82
+ "peerDependencies": {
83
+ "react": "18",
84
+ "react-dom": "18"
85
+ },
86
+ "scripts": {
87
+ "prebuild": "npm run clean",
88
+ "build": "npm-run-all build:**",
89
+ "build:components": "vite build",
90
+ "clean": "rimraf dist/ pages/",
91
+ "lint": "tsc --project ./tsconfig.json --noEmit && tsc --noEmit --project ./tsconfig.test.json",
92
+ "test": "mkdirp pages && cross-env NODE_OPTIONS=--experimental-vm-modules jest --verbose",
93
+ "watch:test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --verbose --watch"
94
+ }
95
+ }