mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-29 22:02:02 +00:00
- Introduced a .nvmrc file to specify the Node.js version (22) for the project, ensuring consistent development environments. - Enhanced error handling in the startServer function to provide clearer messages when the Node.js executable cannot be found, improving debugging experience. - Updated package.json files across various modules to enforce Node.js version compatibility and ensure consistent dependency versions. These changes aim to streamline development processes and enhance the application's reliability by enforcing version control and improving error reporting.
40 lines
830 B
JSON
40 lines
830 B
JSON
{
|
|
"name": "@automaker/dependency-resolver",
|
|
"version": "1.0.0",
|
|
"description": "Feature dependency resolution for AutoMaker",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"keywords": [
|
|
"automaker",
|
|
"dependency",
|
|
"resolver"
|
|
],
|
|
"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"
|
|
}
|
|
}
|