-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (112 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (112 loc) · 3.15 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@etl-corestream/react",
"version": "0.2.66",
"description": "React UI components for ETLCoreStream — stream-oriented ETL building blocks.",
"author": "cristianm-developer <cristianm-developer@users.noreply.github.com>",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/index.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cristianm-developer/ETLCoreStream-React.git"
},
"bugs": {
"url": "https://github.com/cristianm-developer/ETLCoreStream-React/issues"
},
"homepage": "https://github.com/cristianm-developer/ETLCoreStream-React#readme",
"keywords": [
"etl",
"react",
"stream",
"etl-corestream",
"corestream",
"components",
"ui",
"rxjs",
"signals"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"sideEffects": [
"**/*.css"
],
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"rxjs": "^7.8.2",
"@etl-corestream/core": "^0.3.21"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build && tsc -p tsconfig.emit-types.json",
"test": "vitest",
"lint": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,md}\"",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.1.2",
"@eslint/js": "^9.39.0",
"@preact/signals-react-transform": "^0.8.1",
"@react-icons/all-files": "^4.1.0",
"@storybook/addon-a11y": "^10.3.6",
"@storybook/addon-docs": "^10.3.6",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-vitest": "^10.3.6",
"@storybook/react-vite": "^10.3.6",
"@tailwindcss/postcss": "^4.2.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/browser-playwright": "^4.1.5",
"@vitest/coverage-v8": "^4.1.5",
"autoprefixer": "^10.5.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-storybook": "^10.3.6",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"playwright": "^1.59.1",
"postcss": "^8.5.14",
"prettier": "^3.8.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"storybook": "^10.3.6",
"tailwindcss": "^4.2.4",
"typescript": "~6.0.2",
"typescript-eslint": "^8.59.4",
"vite": "^7.3.3",
"vite-plugin-dts": "^5.0.0",
"vitest": "^4.1.5"
},
"dependencies": {
"@preact/signals-react": "^3.10.0",
"@radix-ui/react-slot": "^1.2.4",
"clsx": "^2.1.1",
"lodash-es": "^4.18.1"
}
}