- 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
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "is-reference",
|
|
"version": "1.2.1",
|
|
"description": "Determine whether an AST node is a reference",
|
|
"main": "dist/is-reference.js",
|
|
"module": "dist/is-reference.es.js",
|
|
"types": "dist/types/index.d.ts",
|
|
"files": [
|
|
"dist/*.js",
|
|
"dist/types/**/*.d.ts"
|
|
],
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"build": "rollup -c && tsc --emitDeclarationOnly",
|
|
"pretest": "npm run build",
|
|
"prepare": "npm run build",
|
|
"prepublishOnly": "npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Rich-Harris/is-reference.git"
|
|
},
|
|
"keywords": [
|
|
"ast",
|
|
"javascript",
|
|
"estree",
|
|
"acorn"
|
|
],
|
|
"author": "Rich Harris",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/Rich-Harris/is-reference/issues"
|
|
},
|
|
"homepage": "https://github.com/Rich-Harris/is-reference#readme",
|
|
"dependencies": {
|
|
"@types/estree": "*"
|
|
},
|
|
"devDependencies": {
|
|
"acorn": "^7.2.0",
|
|
"acorn-class-fields": "^0.3.2",
|
|
"acorn-static-class-features": "^0.2.1",
|
|
"estree-walker": "^2.0.1",
|
|
"mocha": "^7.1.2",
|
|
"rollup": "^2.10.3",
|
|
"rollup-plugin-typescript": "^1.0.1",
|
|
"tslib": "^2.0.0",
|
|
"typescript": "^3.9.2"
|
|
}
|
|
}
|