core/package.json

40 lines
994 B
JSON
Raw Normal View History

2025-05-16 06:23:48 +00:00
{
"name": "publy-admin",
"version": "0.4.20",
"private": true,
"description": "admin panel",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "biome check .",
"format": "biome format . --write",
"type-check": "tsc --noEmit",
"test": "vitest",
"build:auth": "vite build -c client/auth/vite.config.ts",
"watch:auth": "vite build -c client/auth/vite.config.ts --watch"
},
"dependencies": {
"@solidjs/router": "^0.15.0",
"@solid-primitives/storage": "^4.3.0",
"graphql": "^16.8.0",
"graphql-request": "^6.1.0",
"solid-js": "^1.9.6",
"solid-styled-components": "^0.28.0"
},
"devDependencies": {
"@types/node": "^22.15.0",
"@biomejs/biome": "^1.9.4",
"typescript": "^5.8.0",
"vite": "^6.3.0",
"vite-plugin-solid": "^2.11.0",
"terser": "^5.39.0"
},
"exports": {
".": {
"import": "./dist/auth.es.js",
"require": "./dist/auth.umd.js"
}
}
}