- fix(deps): add zod and typescript to package.json - feat(lib): add cryptographically secure random utility with TDD - feat(lib): add client i18n helper with TDD - fix(i18n): update privacy policy for crypto accuracy - ci(deploy): add test and lint gates, fix SSH security
39 lines
1003 B
JSON
39 lines
1003 B
JSON
{
|
|
"name": "randify",
|
|
"type": "module",
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"build": "astro build",
|
|
"preview": "astro preview",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check ."
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/sitemap": "^3.2.1",
|
|
"@tailwindcss/vite": "^4.0.0",
|
|
"astro": "^4.16.0",
|
|
"tailwindcss": "^4.0.0",
|
|
"zod": "^3.25.7"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.59.2",
|
|
"@typescript-eslint/parser": "^8.59.2",
|
|
"@vitest/coverage-v8": "^4.1.5",
|
|
"eslint": "^10.3.0",
|
|
"eslint-plugin-astro": "^1.7.0",
|
|
"globals": "^17.6.0",
|
|
"prettier": "^3.8.3",
|
|
"prettier-plugin-astro": "^0.14.1",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.59.2",
|
|
"vitest": "^4.1.5"
|
|
}
|
|
}
|