mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-31 20:03:37 +00:00
- Bumped version from 0.12.0rc to 0.13.0 across the project. - Updated package-lock.json to reflect changes in dependencies, including marking certain dependencies as `devOptional`. - Adjusted import paths in the UI for better module organization. This update ensures consistency in versioning and improves the structure of utility imports.
47 lines
993 B
JSON
47 lines
993 B
JSON
{
|
|
"name": "@automaker/utils",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "Shared utility functions for AutoMaker",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./logger": {
|
|
"types": "./dist/logger.d.ts",
|
|
"default": "./dist/logger.js"
|
|
},
|
|
"./debounce": {
|
|
"types": "./dist/debounce.d.ts",
|
|
"default": "./dist/debounce.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"keywords": [
|
|
"automaker",
|
|
"utils"
|
|
],
|
|
"author": "AutoMaker Team",
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"engines": {
|
|
"node": ">=22.0.0 <23.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@automaker/platform": "1.0.0",
|
|
"@automaker/types": "1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "22.19.3",
|
|
"typescript": "5.9.3",
|
|
"vitest": "4.0.16"
|
|
}
|
|
}
|