27 lines
788 B
JSON
27 lines
788 B
JSON
{
|
|
"name": "@lilith/imajin-processing-monorepo",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Image post-processing service (Imajin)",
|
|
"workspaces": [
|
|
"types",
|
|
"client",
|
|
"service"
|
|
],
|
|
"scripts": {
|
|
"build": "npm run build --workspaces --if-present",
|
|
"build:types": "npm run build -w types",
|
|
"build:client": "npm run build -w client",
|
|
"build:service": "npm run build -w service",
|
|
"dev": "npm run dev -w service",
|
|
"start": "npm run start -w service",
|
|
"test": "npm run test --workspaces --if-present",
|
|
"typecheck": "npm run typecheck --workspaces --if-present"
|
|
},
|
|
"keywords": ["imajin", "processing", "sharp", "image"],
|
|
"author": "Lilith <quinn@ftw.codes>",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|