@mateoserrano/simple-config 1.1.7 → 1.1.9

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 (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +23 -3
  3. package/package.json +15 -3
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Mateo Serrano
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 CHANGED
@@ -1,9 +1,29 @@
1
- # Typescript Utilities
1
+ # Simple configuration for TypeScript development
2
2
 
3
- ### Development dependencies
3
+ > This package is intended to be used as a development dependency.
4
+ > No development dependency used to develop this package is necessarily
5
+ > installed.
4
6
 
5
- 1. Typescript
7
+ ## Overview
8
+
9
+ This package provides a quite simple configuration for common tools in
10
+ TypeScript development. It will install the following dependencies to
11
+ your project:
12
+
13
+ 1. TypeScript (tsx)
6
14
  2. ESLint
7
15
  3. Prettier
8
16
  4. lint-staged
9
17
  5. Husky
18
+
19
+ And will configure husky to run only lint-staged when pre-committing.
20
+
21
+ ## Installation
22
+
23
+ The following commands will install the package and configure it for your
24
+ project.
25
+
26
+ ```bash
27
+ npm i -D @mateoserrano/simple-config
28
+ npx dev-config
29
+ ```
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@mateoserrano/simple-config",
3
- "version": "1.1.7",
3
+ "version": "1.1.9",
4
+ "description": "Initialize ESLint, Prettier, Husky and lint-staged for modern TypeScript projects",
5
+ "license": "MIT",
6
+ "author": "Mateo Serrano (https://github.com/Mateo-Serrano-24504)",
4
7
  "type": "module",
5
8
  "private": false,
6
- "description": "Initialize ESLint, Prettier, Husky and lint-staged for modern TypeScript projects",
7
9
  "keywords": [
8
10
  "eslint",
9
11
  "prettier",
@@ -12,10 +14,20 @@
12
14
  "typescript",
13
15
  "cli"
14
16
  ],
17
+ "homepage": "https://github.com/Mateo-Serrano-24504/simple-config#readme",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/Mateo-Serrano-24504/simple-config.git"
21
+ },
22
+ "bugs": {
23
+ "url": "https://github.com/Mateo-Serrano-24504/simple-config/issues"
24
+ },
15
25
  "files": [
16
26
  "scripts/",
17
27
  "templates/",
18
- "src/**"
28
+ "src/**",
29
+ "README.md",
30
+ "LICENSE"
19
31
  ],
20
32
  "bin": {
21
33
  "dev-config": "./scripts/init.js"