better-dx 0.1.3

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.
package/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ # MIT License
2
+
3
+ Copyright (c) 2024 Open Web Foundation
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,83 @@
1
+ <p align="center"><img src=".github/art/cover.jpg" alt="Social Card of this repo"></p>
2
+
3
+ [![npm version][npm-version-src]][npm-version-href]
4
+ [![GitHub Actions][github-actions-src]][github-actions-href]
5
+ [![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
6
+ <!-- [![npm downloads][npm-downloads-src]][npm-downloads-href] -->
7
+ <!-- [![Codecov][codecov-src]][codecov-href] -->
8
+
9
+ # better-dx
10
+
11
+ This is a collection of development dependencies you may use to kick-start your next JS/TS package.
12
+
13
+ ## Features
14
+
15
+ - Extremely light-weight & performant
16
+ - Release helper tooling
17
+ - Docs generator
18
+ - Code linting & formatting
19
+ - Git linting
20
+ - Changelog generator
21
+ - Automated dependency updates
22
+ - Powerful configuration loading & management
23
+
24
+ ## Installation
25
+
26
+ ```bash
27
+ bun add better-dx
28
+ npm install better-dx
29
+ ```
30
+
31
+ And this sets up your project!
32
+
33
+ ## Testing
34
+
35
+ ```bash
36
+ bun test
37
+ ```
38
+
39
+ ## Changelog
40
+
41
+ Please see our [releases](https://github.com/stackjs/@stacksjs/development/releases) page for more information on what has changed recently.
42
+
43
+ ## Contributing
44
+
45
+ Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
46
+
47
+ ## Community
48
+
49
+ For help, discussion about best practices, or any other conversation that would benefit from being searchable:
50
+
51
+ [Discussions on GitHub](https://github.com/stacksjs/ts-starter/discussions)
52
+
53
+ For casual chit-chat with others using this package:
54
+
55
+ [Join the Stacks Discord Server](https://discord.gg/stacksjs)
56
+
57
+ ## Postcardware
58
+
59
+ “Software that is free, but hopes for a postcard.” We love receiving postcards from around the world showing where Stacks is being used! We showcase them on our website too.
60
+
61
+ Our address: Stacks.js, 12665 Village Ln #2306, Playa Vista, CA 90094, United States 🌎
62
+
63
+ ## Sponsors
64
+
65
+ We would like to extend our thanks to the following sponsors for funding Stacks development. If you are interested in becoming a sponsor, please reach out to us.
66
+
67
+ - [JetBrains](https://www.jetbrains.com/)
68
+ - [The Solana Foundation](https://solana.com/)
69
+
70
+ ## License
71
+
72
+ The MIT License (MIT). Please see [LICENSE](LICENSE.md) for more information.
73
+
74
+ Made with 💙
75
+
76
+ <!-- Badges -->
77
+ [npm-version-src]: https://img.shields.io/npm/v/@stacksjs/development?style=flat-square
78
+ [npm-version-href]: https://npmjs.com/package/@stacksjs/development
79
+ [github-actions-src]: https://img.shields.io/github/actions/workflow/status/stacksjs/ts-starter/ci.yml?style=flat-square&branch=main
80
+ [github-actions-href]: https://github.com/stacksjs/ts-starter/actions?query=workflow%3Aci
81
+
82
+ <!-- [codecov-src]: https://img.shields.io/codecov/c/gh/stacksjs/ts-starter/main?style=flat-square
83
+ [codecov-href]: https://codecov.io/gh/stacksjs/ts-starter -->
@@ -0,0 +1,3 @@
1
+ export declare const defaultConfig: DXConfig;
2
+ // eslint-disable-next-line antfu/no-top-level-await
3
+ export declare const config: DXConfig;
@@ -0,0 +1,2 @@
1
+ export * from './config';
2
+ export * from './types';