mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 06:12:03 +00:00
- Introduced a new command for validating project builds, providing detailed instructions for running builds and intelligently fixing failures based on recent changes. - Refactored port configuration by centralizing it in the @automaker/types package for improved maintainability and backward compatibility. - Updated imports in various modules to reflect the new centralized port configuration, ensuring consistent usage across the application.
33 lines
656 B
JSON
33 lines
656 B
JSON
{
|
|
"name": "@automaker/prompts",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "AI prompt templates for AutoMaker",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"keywords": [
|
|
"automaker",
|
|
"prompts",
|
|
"ai"
|
|
],
|
|
"author": "AutoMaker Team",
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"engines": {
|
|
"node": ">=22.0.0 <23.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@automaker/types": "1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "22.19.3",
|
|
"typescript": "5.9.3",
|
|
"vitest": "4.0.16"
|
|
}
|
|
}
|