feat(init): initialize new project

This commit is contained in:
2025-11-15 22:58:33 +08:00
commit ec99b0cf6a
16 changed files with 285 additions and 0 deletions

36
package.json Normal file
View File

@@ -0,0 +1,36 @@
{
"name": "cn.kmux.navsite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"prepare": "husky",
"cm": "cz"
},
"dependencies": {
"@radix-ui/themes": "^3.2.1",
"solid-js": "^1.9.10",
"tailwindcss": "^4.1.17"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tailwindcss/vite": "^4.1.17",
"@types/node": "^24.10.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.2",
"vite-plugin-solid": "^2.11.10"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}