mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-31 06:42:03 +00:00
- Added author information as "AutoMaker Team" to all package.json files. - Set license to "SEE LICENSE IN LICENSE" for consistency across the project.
25 lines
576 B
JSON
25 lines
576 B
JSON
{
|
|
"name": "@automaker/platform",
|
|
"version": "1.0.0",
|
|
"description": "Platform-specific utilities 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", "platform"],
|
|
"author": "AutoMaker Team",
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"dependencies": {
|
|
"@automaker/types": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.5",
|
|
"typescript": "^5.7.3",
|
|
"vitest": "^3.1.4"
|
|
}
|
|
}
|