@riab/forge-ui 0.1.0-beta.1

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,10 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" fill="none" role="img" aria-label="Comply">
2
+ <rect width="48" height="48" rx="12" fill="#00A651"/>
3
+ <path
4
+ d="M14 24.5 20 31 34 16"
5
+ stroke="#fff"
6
+ stroke-width="3"
7
+ stroke-linecap="round"
8
+ stroke-linejoin="round"
9
+ />
10
+ </svg>
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@riab/forge-ui",
3
+ "private": false,
4
+ "version": "0.1.0-beta.1",
5
+ "type": "module",
6
+ "description": "Forge web components for embedding in host applications (CodeIgniter, Complysci)",
7
+ "publishConfig": {
8
+ "access": "public",
9
+ "registry": "https://registry.npmjs.org/"
10
+ },
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "main": "./dist/elements.js",
15
+ "module": "./dist/elements.js",
16
+ "exports": {
17
+ ".": "./dist/elements.js"
18
+ },
19
+ "scripts": {
20
+ "dev": "vite",
21
+ "build": "vue-tsc -b && vite build",
22
+ "build:lib": "cross-env VITE_LIB_MODE=1 vite build",
23
+ "build:shell": "vue-tsc -b && vite build --config vite.shell.config.ts",
24
+ "preview": "vite preview",
25
+ "typecheck": "vue-tsc --noEmit",
26
+ "lint": "eslint .",
27
+ "format": "prettier --write \"src/**/*.{ts,vue,css,json}\"",
28
+ "test": "vitest run",
29
+ "test:watch": "vitest",
30
+ "test:visual": "playwright test --project=visual-regression",
31
+ "test:visual:report": "playwright show-report playwright-report"
32
+ },
33
+ "dependencies": {
34
+ "class-variance-authority": "^0.7.1",
35
+ "clsx": "^2.1.1",
36
+ "jspdf": "^4.2.1",
37
+ "lucide-vue-next": "^0.468.0",
38
+ "pinia": "^2.3.0",
39
+ "tailwind-merge": "^3.5.0",
40
+ "vue": "^3.5.0",
41
+ "vue-i18n": "^10.0.0"
42
+ },
43
+ "devDependencies": {
44
+ "@eslint/js": "^9.16.0",
45
+ "@playwright/test": "^1.59.1",
46
+ "@tailwindcss/forms": "^0.5.11",
47
+ "@types/node": "^25.6.0",
48
+ "@vitejs/plugin-vue": "^5.2.0",
49
+ "@vue/test-utils": "^2.4.0",
50
+ "@vue/tsconfig": "^0.7.0",
51
+ "autoprefixer": "^10.5.0",
52
+ "cross-env": "^10.1.0",
53
+ "eslint": "^9.0.0",
54
+ "eslint-plugin-vue": "^9.32.0",
55
+ "globals": "^15.14.0",
56
+ "jsdom": "^25.0.0",
57
+ "prettier": "^3.4.0",
58
+ "sharp": "^0.34.5",
59
+ "tailwindcss": "^3.4.19",
60
+ "typescript": "~5.7.0",
61
+ "typescript-eslint": "^8.18.2",
62
+ "vite": "^6.0.0",
63
+ "vite-plugin-css-injected-by-js": "^3.5.2",
64
+ "vitest": "^3.0.0",
65
+ "vue-tsc": "^2.2.0"
66
+ }
67
+ }