imajin/@packages/imajin-app/package.json
2026-04-12 10:44:39 -07:00

56 lines
1.3 KiB
JSON

{
"name": "@lilith/imajin-app",
"version": "0.1.0",
"description": "Core entry point for Imajin: pipelines, parsing, configuration",
"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"
},
"./config": {
"types": "./dist/config/index.d.ts",
"import": "./dist/config/index.js"
},
"./pipelines": {
"types": "./dist/pipelines/index.d.ts",
"import": "./dist/pipelines/index.js"
},
"./prompts": {
"types": "./dist/prompts/index.d.ts",
"import": "./dist/prompts/index.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {},
"devDependencies": {
"@lilith/configs": "^2.2.1",
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"vitest": "^2.0.0"
},
"keywords": [
"imajin",
"pipelines",
"prompts",
"image-generation"
],
"author": "Lilith <quinn@ftw.codes>",
"license": "MIT",
"publishConfig": {
"registry": "http://forge.black.local/api/packages/lilith/npm/"
}
}