asset-service/package.json
autocommit 0b0b8b0618 deps-upgrade(dependencies): ⬆️ Update React, build tools, and testing libraries to latest stable versions
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 04:03:01 -07:00

53 lines
1.3 KiB
JSON

{
"name": "@lilith/asset-service",
"version": "1.0.0",
"description": "Static asset serving service from bigdisk storage",
"main": "./dist/server.js",
"types": "./dist/server.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf dist"
},
"dependencies": {
"express": "^4.18.2",
"helmet": "^7.1.0",
"cors": "^2.8.5",
"compression": "^1.7.4",
"serve-static": "^1.15.0"
},
"devDependencies": {
"@lilith/eslint-config-base": "^1.0.0",
"@lilith/typescript-config-base": "^1.0.0",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"eslint": "^9.0.0",
"supertest": "^6.3.3",
"@types/supertest": "^6.0.2",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
},
"repository": {
"type": "git",
"url": "http://forge.black.lan/lilith/asset-service.git"
},
"keywords": [
"static",
"assets",
"image",
"lilith"
],
"author": "Lilith Platform",
"license": "UNLICENSED"
}