@jannael/config 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +51 -0
  3. package/dist/index.js +5064 -0
  4. package/package.json +74 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Jannael
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,51 @@
1
+ # Config
2
+
3
+ ![Config](apps/web/public/og.png)
4
+
5
+ ![Glinter](https://glinter.jannael.com/badge.svg)
6
+ ![Bun](https://img.shields.io/badge/Bun-000000.svg?style=flat&logo=Bun&logoColor=ffffff)
7
+ ![Typescript](https://img.shields.io/badge/Typescript-3b82f6.svg?style=flat&logo=Typescript&logoColor=ffffff)
8
+ ![ESLint](https://img.shields.io/badge/ESLint-4b32c3.svg?style=flat&logo=ESLint&logoColor=ffffff)
9
+ ![Prettier](https://img.shields.io/badge/Prettier-f59e0b.svg?style=flat-square&logo=Prettier&logoColor=ffffff)
10
+ ![Husky](https://img.shields.io/badge/Husky-000000.svg?style=flat&logo=Husky&logoColor=ffffff)
11
+
12
+ One command to get your linter and formatter set up.
13
+
14
+ ## Quick Start
15
+
16
+ ```bash
17
+ bunx @jannael/config
18
+ ```
19
+
20
+ ## What is Config?
21
+
22
+ One command to set up your linter, formatter, editor config, and Husky + lint-staged — you only have to choose your technologies.
23
+
24
+ It keeps a consistent code style: single quotes, no semicolons, and `printWidth: 150`.
25
+
26
+ **Available linters:** oxlint, biome, eslint
27
+ **Available formatters:** oxfmt, biome, prettier
28
+
29
+ One of the main goals of `config` is full compatibility across selected technologies. When multiple linters or formatters support all your technologies, it lets you choose which one to use.
30
+
31
+ ## Supported technologies
32
+
33
+ - Astro
34
+ - HTML
35
+ - JavaScript
36
+ - Lit
37
+ - Next.js
38
+ - React
39
+ - React Native
40
+ - Solid
41
+ - Tailwind CSS
42
+ - TypeScript
43
+ - Vue
44
+
45
+ ## License
46
+
47
+ [MIT](LICENSE)
48
+
49
+ ---
50
+
51
+ Thanks to [midudev](https://github.com/midudev) for his [autoskills.sh](https://github.com/midudev/autoskills.sh) project — the terminal animation is inspired by it.