- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
75 lines
1.8 KiB
JSON
75 lines
1.8 KiB
JSON
{
|
|
"name": "@valibot/to-json-schema",
|
|
"description": "The official JSON schema converter for Valibot",
|
|
"version": "1.5.0",
|
|
"license": "MIT",
|
|
"author": "Fabian Hiller",
|
|
"homepage": "https://valibot.dev",
|
|
"contributors": [
|
|
{
|
|
"name": "Guillaume Cornut"
|
|
}
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/open-circle/valibot"
|
|
},
|
|
"keywords": [
|
|
"valibot",
|
|
"schema",
|
|
"converter",
|
|
"json-schema"
|
|
],
|
|
"type": "module",
|
|
"main": "./dist/index.mjs",
|
|
"types": "./dist/index.d.mts",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.cjs"
|
|
}
|
|
}
|
|
},
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.1",
|
|
"@types/node": "^24.10.1",
|
|
"@vitest/coverage-v8": "^4.0.13",
|
|
"eslint": "^9.39.1",
|
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-jsdoc": "^61.4.0",
|
|
"eslint-plugin-security": "^3.0.1",
|
|
"globals": "^16.5.0",
|
|
"tsdown": "^0.16.6",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.47.0",
|
|
"valibot": "^1.2.0",
|
|
"vite": "^7.2.4",
|
|
"vite-tsconfig-paths": "^5.1.4",
|
|
"vitest": "4.0.13"
|
|
},
|
|
"peerDependencies": {
|
|
"valibot": "^1.2.0"
|
|
},
|
|
"scripts": {
|
|
"test": "vitest --typecheck",
|
|
"coverage": "vitest run --coverage --isolate",
|
|
"lint": "eslint \"src/**/*.ts*\" && tsc --noEmit && deno check ./src/index.ts",
|
|
"lint.fix": "eslint \"src/**/*.ts*\" --fix",
|
|
"format": "prettier --write ./src",
|
|
"format.check": "prettier --check ./src",
|
|
"build": "tsdown"
|
|
}
|
|
} |