KRadio/package.json
Triston Armstrong 6d5527e61c feat(all): get eslint working in neovim
It works just fine as a default in vscodium, but i couldnt get it to work in neovim. Had to do a
little messing around and it now works perfectly in neovim which is awesome and a pretty good
indication that itll work elsewhere as well.

Issue #14
2024-03-22 01:20:59 -05:00

40 lines
905 B
JSON

{
"name": "big-word",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"commit": "cz",
"test:f": "vitest",
"test:f:ui": "bun run test:f --ui"
},
"dependencies": {
"@tauri-apps/api": "^1",
"kaioken": "^0.10.5",
"vite-plugin-kaioken": "^0.0.7"
},
"devDependencies": {
"@tauri-apps/cli": "^1",
"@typescript-eslint/parser": "^7.3.1",
"autoprefixer": "^10.4.18",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jsdom": "^24.0.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.0.2",
"vite": "^5.0.0",
"vitest": "^1.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}