imajin/@packages/imajin-config/package.json
autocommit 86c1af603a deps-upgrade(imajin): ⬆️ Upgrade dependencies across all Imajin packages to align with latest versions
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 03:58:34 -07:00

59 lines
1.5 KiB
JSON

{
"name": "@lilith/imajin-config",
"version": "0.1.1",
"description": "Configuration helpers for @imajin - poses, subjects, and styling templates",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./poses": {
"types": "./dist/poses.d.ts",
"import": "./dist/poses.js",
"require": "./dist/poses.cjs"
},
"./subjects": {
"types": "./dist/subjects.d.ts",
"import": "./dist/subjects.js",
"require": "./dist/subjects.cjs"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"attrs:export": "tsx scripts/export-attributes.ts",
"attrs:analyze": "vitest run tests/coverage-analysis.test.ts",
"attrs:coverage": "tsx scripts/export-attributes.ts --offline && vitest run tests/coverage-analysis.test.ts"
},
"devDependencies": {
"@lilith/configs": "^2.2.1",
"tsup": "^8.0.0",
"tsx": "^4.7.0",
"typescript": "^5.4.0",
"vitest": "^2.0.0"
},
"keywords": [
"imajin",
"config",
"poses",
"subjects",
"image-generation"
],
"author": "Lilith <quinn@ftw.codes>",
"license": "MIT",
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
}
}