@baseplate-dev/tools 0.1.1 → 0.1.2

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 (2) hide show
  1. package/README.md +24 -0
  2. package/package.json +3 -3
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # @baseplate-dev/tools
2
+
3
+ This package contains common development tools and configurations used throughout the Baseplate monorepo.
4
+
5
+ ## Purpose
6
+
7
+ The tools package provides:
8
+
9
+ - Shared ESLint configurations for Node.js and React projects
10
+ - Prettier configurations for consistent code formatting
11
+ - TypeScript configurations for various project types
12
+ - Vitest configurations for testing
13
+ - Common development tool settings
14
+
15
+ ## Configurations Included
16
+
17
+ - **ESLint**: Base, Node.js, React, and Storybook configurations
18
+ - **Prettier**: Node.js and React specific formatting rules
19
+ - **TypeScript**: Base configs for CLI, library, and Vite projects
20
+ - **Vitest**: Test runner configurations for Node.js and React
21
+
22
+ ## Part of Baseplate Monorepo
23
+
24
+ This package is part of the Baseplate monorepo and provides standardized development configurations to ensure consistency across all packages.
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@baseplate-dev/tools",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Shared dev configurations for linting, formatting, and testing Baseplate projects",
5
- "homepage": "https://www.halfdomelabs.com/",
5
+ "homepage": "https://www.baseplate.dev",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/halfdomelabs/baseplate",
9
9
  "directory": "packages/tools"
10
10
  },
11
- "license": "SEE LICENSE IN LICENSE",
11
+ "license": "MPL-2.0",
12
12
  "author": "Half Dome Labs LLC",
13
13
  "sideEffects": false,
14
14
  "type": "module",