@outfitter/fieldguides
Advanced tools
Comparing version
# @outfitter/fieldguides | ||
## 0.1.1 | ||
## 1.0.4 | ||
### Patch Changes | ||
- chore: prepare initial npm publication | ||
- 98a1cd3: Bump all packages to version 1.0.3 with proper publishing configuration | ||
Bump all packages to 1.0.1 for initial npm publication | ||
- Add missing publishConfig fields for npm publishing | ||
- Fix repository metadata and directory paths | ||
- Ensure consistent versioning across monorepo | ||
- Clean up CHANGELOG files and git tracking |
{ | ||
"name": "@outfitter/fieldguides", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Living documentation system that equips AI agents with consistent development practices", | ||
@@ -15,2 +15,20 @@ "type": "module", | ||
], | ||
"scripts": { | ||
"build": "tsc", | ||
"build:watch": "tsc --watch", | ||
"prebuild": "pnpm run clean", | ||
"clean": "rm -f scripts/*.js scripts/*.js.map", | ||
"lint": "pnpm run lint:md && pnpm run lint:frontmatter", | ||
"lint:md": "markdownlint-cli2 \"**/*.md\" \"!node_modules/**\" \"!.pnpm/**\"", | ||
"lint:frontmatter": "node scripts/validate-frontmatter.js", | ||
"lint:fix": "pnpm run lint:md:fix", | ||
"lint:md:fix": "markdownlint-cli2 \"**/*.md\" \"!node_modules/**\" \"!.pnpm/**\" --fix", | ||
"format": "prettier --check \"**/*.md\"", | ||
"format:fix": "prettier --write \"**/*.md\"", | ||
"check": "pnpm run lint", | ||
"ci": "pnpm run check", | ||
"test": "echo 'No tests for documentation package'", | ||
"prepare": "pnpm run build", | ||
"postinstall": "pnpm run build" | ||
}, | ||
"devDependencies": { | ||
@@ -53,19 +71,5 @@ "@types/node": "^20.0.0", | ||
"homepage": "https://github.com/outfitter-dev/monorepo/tree/main/packages/fieldguides#readme", | ||
"scripts": { | ||
"build": "tsc", | ||
"build:watch": "tsc --watch", | ||
"prebuild": "pnpm run clean", | ||
"clean": "rm -f scripts/*.js scripts/*.js.map", | ||
"lint": "pnpm run lint:md && pnpm run lint:frontmatter", | ||
"lint:md": "markdownlint-cli2 \"**/*.md\" \"!node_modules/**\" \"!.pnpm/**\"", | ||
"lint:frontmatter": "node scripts/validate-frontmatter.js", | ||
"lint:fix": "pnpm run lint:md:fix", | ||
"lint:md:fix": "markdownlint-cli2 \"**/*.md\" \"!node_modules/**\" \"!.pnpm/**\" --fix", | ||
"format": "prettier --check \"**/*.md\"", | ||
"format:fix": "prettier --write \"**/*.md\"", | ||
"check": "pnpm run lint", | ||
"ci": "pnpm run check", | ||
"test": "echo 'No tests for documentation package'", | ||
"postinstall": "pnpm run build" | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
} | ||
} |
932454
0.03%