Triston Armstrong
7492219346
I installed the commitizen repo support using the cz-conventional-changelog init command and updated the script section of the package.json file, adding the commit script so i can run bun commit instead
33 lines
685 B
JSON
33 lines
685 B
JSON
{
|
|
"name": "big-word",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"tauri": "tauri",
|
|
"commit": "cz"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^1",
|
|
"kaioken": "^0.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^1",
|
|
"autoprefixer": "^10.4.18",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"postcss": "^8.4.35",
|
|
"tailwindcss": "^3.4.1",
|
|
"typescript": "^5.0.2",
|
|
"vite": "^5.0.0",
|
|
"vite-plugin-kaioken": "^0.0.7"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|