deps-upgrade(multi-module): ⬆️ Resolve dependency conflicts by synchronizing versions across all modules
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
1308ae67ce
commit
cc82192e33
17 changed files with 158 additions and 84 deletions
|
|
@ -17,14 +17,17 @@
|
|||
"url": "https://github.com/transquinnftw/lilith-platform/issues"
|
||||
},
|
||||
"homepage": "https://github.com/transquinnftw/lilith-platform#readme",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": "./src/index.ts"
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"typecheck": "tsc --noEmit",
|
||||
"build": "tsc",
|
||||
"build": "lixb",
|
||||
"test": "vitest run --passWithNoTests",
|
||||
"lint": "eslint . --ext ts,tsx"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -17,11 +17,17 @@
|
|||
"url": "https://github.com/transquinnftw/lilith-platform/issues"
|
||||
},
|
||||
"homepage": "https://github.com/transquinnftw/lilith-platform#readme",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"typecheck": "tsc --noEmit",
|
||||
"build": "echo 'No build needed - exports src directly'",
|
||||
"build": "lixb",
|
||||
"test": "vitest run --passWithNoTests",
|
||||
"lint": "eslint . --ext ts,tsx"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -17,14 +17,17 @@
|
|||
"url": "https://github.com/transquinnftw/lilith-platform/issues"
|
||||
},
|
||||
"homepage": "https://github.com/transquinnftw/lilith-platform#readme",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": "./src/index.ts"
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"typecheck": "tsc --noEmit",
|
||||
"build": "tsc",
|
||||
"build": "lixb",
|
||||
"test": "vitest run --passWithNoTests",
|
||||
"lint": "eslint . --ext ts"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -3,14 +3,20 @@
|
|||
"version": "0.1.0",
|
||||
"description": "Client library for lilith-platform SSO authentication",
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": "./src/index.ts",
|
||||
"./react": "./src/hooks/index.ts"
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
},
|
||||
"./react": {
|
||||
"types": "./dist/react.d.ts",
|
||||
"import": "./dist/react.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"build": "lixb",
|
||||
"dev": "tsc --watch",
|
||||
"clean": "rimraf dist",
|
||||
"typecheck": "tsc --noEmit",
|
||||
|
|
|
|||
|
|
@ -3,21 +3,19 @@
|
|||
"version": "1.0.0",
|
||||
"description": "Shared authentication provider for React apps with SSO support",
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"module": "dist/index.js",
|
||||
"types": "./src/index.ts",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./src/index.ts",
|
||||
"require": "./src/index.ts",
|
||||
"types": "./src/index.ts"
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "echo 'No build needed - exports src directly'",
|
||||
"build": "lixb",
|
||||
"dev": "tsc --watch",
|
||||
"test": "vitest run --passWithNoTests",
|
||||
"typecheck": "tsc --noEmit"
|
||||
|
|
|
|||
|
|
@ -3,21 +3,19 @@
|
|||
"version": "1.0.0",
|
||||
"description": "Profile data provider for React apps with dev mode bridge",
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"module": "dist/index.js",
|
||||
"types": "./src/index.ts",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./src/index.ts",
|
||||
"require": "./src/index.ts",
|
||||
"types": "./src/index.ts"
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "echo 'No build needed - exports src directly'",
|
||||
"build": "lixb",
|
||||
"dev": "tsc --watch",
|
||||
"test": "vitest run --passWithNoTests",
|
||||
"typecheck": "tsc --noEmit"
|
||||
|
|
|
|||
|
|
@ -17,11 +17,17 @@
|
|||
"url": "https://github.com/transquinnftw/lilith-platform/issues"
|
||||
},
|
||||
"homepage": "https://github.com/transquinnftw/lilith-platform#readme",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"typecheck": "tsc --noEmit",
|
||||
"build": "tsc --noEmit",
|
||||
"build": "lixb",
|
||||
"test": "vitest run --passWithNoTests",
|
||||
"lint": "eslint . --ext ts"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -3,16 +3,16 @@
|
|||
"version": "1.0.7",
|
||||
"description": "Unified developer tools FAB with configurable categories for access levels, profiles, and storage management",
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./src/index.ts",
|
||||
"default": "./src/index.ts"
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsc --project tsconfig.json",
|
||||
"build": "lixb",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"lint": "eslint src --fix",
|
||||
"lint:check": "eslint src",
|
||||
|
|
|
|||
|
|
@ -3,13 +3,16 @@
|
|||
"version": "1.1.3",
|
||||
"description": "Reusable locale file selector and pipeline runner for platform-admin",
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": "./src/index.ts"
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsc --project tsconfig.json",
|
||||
"build": "lixb",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"lint": "eslint src --fix",
|
||||
"lint:check": "eslint src"
|
||||
|
|
|
|||
|
|
@ -3,25 +3,25 @@
|
|||
"version": "1.0.0",
|
||||
"description": "Attributes feature frontend - UI components and React hooks",
|
||||
"type": "module",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./src/index.ts",
|
||||
"types": "./src/index.ts"
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
},
|
||||
"./hooks": {
|
||||
"import": "./src/hooks/index.ts",
|
||||
"types": "./src/hooks/index.ts"
|
||||
"types": "./dist/hooks.d.ts",
|
||||
"import": "./dist/hooks.js"
|
||||
},
|
||||
"./components": {
|
||||
"import": "./src/components/index.ts",
|
||||
"types": "./src/components/index.ts"
|
||||
"types": "./dist/components.d.ts",
|
||||
"import": "./dist/components.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsup src/index.ts --format cjs,esm --dts",
|
||||
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
||||
"build": "lixb",
|
||||
"dev": "lixb --watch",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"test": "vitest run --passWithNoTests",
|
||||
"test:watch": "vitest"
|
||||
|
|
|
|||
|
|
@ -6,12 +6,12 @@
|
|||
"author": "The Collective",
|
||||
"license": "UNLICENSED",
|
||||
"private": true,
|
||||
"main": "dist/index.js",
|
||||
"types": "src/index.ts",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./src/index.ts",
|
||||
"default": "./dist/index.js"
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -4,13 +4,16 @@
|
|||
"private": true,
|
||||
"description": "User-facing email management UI for lilith-platform portal",
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": "./src/index.ts"
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"build": "lixb",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"test": "vitest run --passWithNoTests",
|
||||
"test:watch": "vitest",
|
||||
|
|
|
|||
|
|
@ -3,13 +3,16 @@
|
|||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": "./src/index.ts"
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"build": "lixb",
|
||||
"typecheck": "tsc --noEmit"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
|||
|
|
@ -3,16 +3,25 @@
|
|||
"version": "1.0.0",
|
||||
"type": "module",
|
||||
"description": "Feature flag client library for the lilith platform",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": "./src/index.ts",
|
||||
"./react": "./src/react.ts",
|
||||
"./nestjs": "./src/nestjs.ts"
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
},
|
||||
"./react": {
|
||||
"types": "./dist/react.d.ts",
|
||||
"import": "./dist/react.js"
|
||||
},
|
||||
"./nestjs": {
|
||||
"types": "./dist/nestjs.d.ts",
|
||||
"import": "./dist/nestjs.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"typecheck": "tsc --noEmit",
|
||||
"build": "tsc",
|
||||
"build": "lixb",
|
||||
"test": "vitest run --passWithNoTests",
|
||||
"lint": "eslint . --ext ts,tsx"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -3,16 +3,30 @@
|
|||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": "./src/index.ts",
|
||||
"./extension-points": "./src/extension-points/index.ts",
|
||||
"./plugins": "./src/plugins/index.ts",
|
||||
"./theme": "./src/theme/index.ts"
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
},
|
||||
"./extension-points": {
|
||||
"types": "./dist/extension-points.d.ts",
|
||||
"import": "./dist/extension-points.js"
|
||||
},
|
||||
"./plugins": {
|
||||
"types": "./dist/plugins.d.ts",
|
||||
"import": "./dist/plugins.js"
|
||||
},
|
||||
"./theme": {
|
||||
"types": "./dist/theme.d.ts",
|
||||
"import": "./dist/theme.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"build": "lixb",
|
||||
"build:app": "vite build",
|
||||
"preview": "vite preview",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"lint": "eslint src --ext ts,tsx",
|
||||
|
|
|
|||
|
|
@ -4,15 +4,30 @@
|
|||
"private": true,
|
||||
"type": "module",
|
||||
"description": "User profile management and editing feature",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": "./src/index.ts",
|
||||
"./pages": "./src/pages/index.ts",
|
||||
"./hooks": "./src/hooks/index.ts",
|
||||
"./configs": "./src/configs/index.ts"
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
},
|
||||
"./pages": {
|
||||
"types": "./dist/pages.d.ts",
|
||||
"import": "./dist/pages.js"
|
||||
},
|
||||
"./hooks": {
|
||||
"types": "./dist/hooks.d.ts",
|
||||
"import": "./dist/hooks.js"
|
||||
},
|
||||
"./configs": {
|
||||
"types": "./dist/configs.d.ts",
|
||||
"import": "./dist/configs.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"build": "lixb",
|
||||
"build:app": "vite build",
|
||||
"preview": "vite preview",
|
||||
"test": "vitest run --passWithNoTests",
|
||||
"test:e2e": "playwright test",
|
||||
|
|
|
|||
|
|
@ -3,11 +3,18 @@
|
|||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "tsc && vite build",
|
||||
"build": "lixb",
|
||||
"build:app": "vite build",
|
||||
"preview": "vite preview",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"test:e2e": "playwright test",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue