@aleph-alpha/ui-library 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 +202 -0
- package/README.md +97 -0
- package/dist/system/aa_logo.svg +4 -0
- package/dist/system/index.d.ts +1482 -0
- package/dist/system/lib.js +10827 -0
- package/package.json +93 -0
package/package.json
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aleph-alpha/ui-library",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/system/lib.js",
|
|
7
|
+
"types": "dist/system/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/system/index.d.ts",
|
|
11
|
+
"import": "./dist/system/lib.js"
|
|
12
|
+
},
|
|
13
|
+
"./tailwind.preset": "./tailwind.preset.js"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist/system",
|
|
17
|
+
"tailwind.preset.js"
|
|
18
|
+
],
|
|
19
|
+
"description": "Next-gen UI Library for Vue.js projects.",
|
|
20
|
+
"author": "Aleph Alpha GmbH",
|
|
21
|
+
"prettier": "@aleph-alpha/prettier-config-frontend",
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=20.19.0"
|
|
24
|
+
},
|
|
25
|
+
"scripts-info": {
|
|
26
|
+
"test": "Runs unit tests once",
|
|
27
|
+
"test:watch": "Runs unit tests in watch mode during development",
|
|
28
|
+
"test:storybook": "Runs Storybook component tests using Vitest browser mode",
|
|
29
|
+
"test:all": "Runs all tests (unit + storybook)",
|
|
30
|
+
"storybook": "Starts interactive Storybook development server on port 6006 for local component development",
|
|
31
|
+
"test:e2e": "Runs end-to-end integration tests with Playwright"
|
|
32
|
+
},
|
|
33
|
+
"homepage": "https://docs.aleph-alpha.com",
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@faker-js/faker": "10.1.0",
|
|
36
|
+
"@playwright/test": "1.57.0",
|
|
37
|
+
"@storybook/addon-a11y": "^10.1.7",
|
|
38
|
+
"@storybook/addon-docs": "^10.1.7",
|
|
39
|
+
"@storybook/addon-themes": "^10.1.7",
|
|
40
|
+
"@storybook/addon-vitest": "^10.1.7",
|
|
41
|
+
"@storybook/vue3-vite": "^10.1.7",
|
|
42
|
+
"@testing-library/jest-dom": "^6.4.6",
|
|
43
|
+
"@testing-library/vue": "^8.1.0",
|
|
44
|
+
"@unocss/preset-wind3": "^66.5.10",
|
|
45
|
+
"@unocss/reset": "66.5.9",
|
|
46
|
+
"@unocss/vite": "^66.5.10",
|
|
47
|
+
"@vitest/browser": "^3.0.0",
|
|
48
|
+
"eslint-plugin-jsdoc": "^61.0.0",
|
|
49
|
+
"eslint-plugin-vuejs-accessibility": "^2.4.1",
|
|
50
|
+
"playwright": "^1.57.0",
|
|
51
|
+
"postcss": "8.5.6",
|
|
52
|
+
"storybook": "^10.1.7",
|
|
53
|
+
"typescript": "^5.2.2",
|
|
54
|
+
"unocss": "66.4.1",
|
|
55
|
+
"unocss-preset-animations": "1.3.0",
|
|
56
|
+
"unocss-preset-shadcn": "^1.0.1",
|
|
57
|
+
"vite-plugin-checker": "0.11.0",
|
|
58
|
+
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
59
|
+
"vite-plugin-dts": "^4.0.0",
|
|
60
|
+
"vitest": "^3.0.0",
|
|
61
|
+
"vue-tsc": "^2.2.12",
|
|
62
|
+
"@aleph-alpha/config-css": "0.20.0",
|
|
63
|
+
"@aleph-alpha/ds-icons": "0.11.0",
|
|
64
|
+
"@aleph-alpha/eslint-config-frontend": "0.4.0",
|
|
65
|
+
"@aleph-alpha/prettier-config-frontend": "0.4.0",
|
|
66
|
+
"@aleph-alpha/tsconfig-frontend": "0.5.0"
|
|
67
|
+
},
|
|
68
|
+
"dependencies": {
|
|
69
|
+
"@floating-ui/vue": "1.1.9",
|
|
70
|
+
"@vueuse/core": "14.1.0",
|
|
71
|
+
"class-variance-authority": "^0.7.1",
|
|
72
|
+
"clsx": "^2.1.1",
|
|
73
|
+
"date-fns": "4.1.0",
|
|
74
|
+
"lucide-vue-next": "^0.556.0",
|
|
75
|
+
"radix-vue": "^1.9.17",
|
|
76
|
+
"reka-ui": "^2.6.1",
|
|
77
|
+
"tailwind-merge": "^3.4.0"
|
|
78
|
+
},
|
|
79
|
+
"scripts": {
|
|
80
|
+
"build": "node scripts/prepare-build.cjs && vite build",
|
|
81
|
+
"ci": "pnpm install --immutable --immutable-cache --check-cache",
|
|
82
|
+
"dev": "vite build --watch",
|
|
83
|
+
"lint": "eslint 'src/**/*.{js,vue,ts}' --cache",
|
|
84
|
+
"test": "vitest --run --project=unit",
|
|
85
|
+
"test:watch": "vitest --project=unit",
|
|
86
|
+
"test:storybook": "vitest --run --project=storybook",
|
|
87
|
+
"test:all": "vitest --run",
|
|
88
|
+
"storybook": "storybook dev -p 6006",
|
|
89
|
+
"build-storybook": "storybook build",
|
|
90
|
+
"test:e2e": "playwright test",
|
|
91
|
+
"publish:local": "yalc publish && yalc push --sig"
|
|
92
|
+
}
|
|
93
|
+
}
|