- 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
57 lines
1.2 KiB
JSON
57 lines
1.2 KiB
JSON
{
|
|
"name": "d3-format",
|
|
"version": "3.1.2",
|
|
"description": "Format numbers for human consumption.",
|
|
"homepage": "https://d3js.org/d3-format/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/d3/d3-format.git"
|
|
},
|
|
"keywords": [
|
|
"d3",
|
|
"d3-module",
|
|
"format",
|
|
"localization"
|
|
],
|
|
"license": "ISC",
|
|
"author": {
|
|
"name": "Mike Bostock",
|
|
"url": "http://bost.ocks.org/mike"
|
|
},
|
|
"type": "module",
|
|
"files": [
|
|
"dist/**/*.js",
|
|
"src/**/*.js",
|
|
"locale/*.json"
|
|
],
|
|
"module": "src/index.js",
|
|
"main": "src/index.js",
|
|
"jsdelivr": "dist/d3-format.min.js",
|
|
"unpkg": "dist/d3-format.min.js",
|
|
"exports": {
|
|
".": {
|
|
"umd": "./dist/d3-format.min.js",
|
|
"default": "./src/index.js"
|
|
},
|
|
"./locale/*": "./locale/*.json"
|
|
},
|
|
"sideEffects": [
|
|
"./src/defaultLocale.js"
|
|
],
|
|
"devDependencies": {
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
"eslint": "^9.39.2",
|
|
"globals": "^17.0.0",
|
|
"rollup": "^4.55.1",
|
|
"vitest": "^4.0.17"
|
|
},
|
|
"scripts": {
|
|
"test": "vitest",
|
|
"lint": "eslint src test",
|
|
"prepublishOnly": "rm -rf dist && rollup -c"
|
|
},
|
|
"engines": {
|
|
"node": ">=12"
|
|
}
|
|
}
|