Files
GoMFT/package.json
T
StarFleetCPTN 130a3b0d1c feat: Enhance storage provider form and configuration
- Updated the storage provider form to categorize options into server-based, object storage, web storage, and cloud storage.
- Improved input placeholders for clarity and added descriptions for fields.
- Introduced new storage provider types: WebDAV, Nextcloud, Wasabi, MinIO, and B2.
- Added JavaScript functionality to auto-populate default ports based on selected provider type.
- Updated .gitignore to include test results and logs, and added Playwright configuration for testing.
2025-04-16 19:24:16 -07:00

29 lines
726 B
JSON

{
"name": "gomft",
"version": "1.0.0",
"description": "GoMFT static assets bundling",
"type": "module",
"scripts": {
"build": "node build.js",
"watch": "node build.js --watch",
"postinstall": "npm run build",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.0",
"alpinejs": "^3.13.5",
"esbuild": "^0.20.1",
"flowbite": "^2.2.1",
"htmx.org": "^1.9.10",
"tailwindcss": "^3.4.1"
},
"devDependencies": {
"@playwright/test": "^1.46.0",
"dotenv": "^16.5.0",
"expect-playwright": "^0.8.0"
}
}