UNPKG

@fjell/lib

Version:

Server-side Library for Fjell

74 lines (73 loc) 2.1 kB
{ "name": "@fjell/lib", "description": "Server-side Library for Fjell", "version": "4.4.89", "keywords": [ "library", "persistence", "database", "fjell" ], "license": "Apache-2.0", "engines": { "node": ">=21" }, "type": "module", "main": "./dist/index.js", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./processing": { "types": "./dist/processing/index.d.ts", "import": "./dist/processing/index.js" } }, "scripts": { "build": "tsc --project tsconfig.declarations.json && node build.js", "dev": "concurrently \"tsc --watch --project tsconfig.declarations.json\" \"node build.js --watch\"", "lint": "eslint . --ext .ts --fix", "clean": "rm -rf dist", "test": "npm run lint && vitest run --coverage", "precommit": "npm run clean && npm run lint && npm run build && npm run test", "prepublishOnly": "npm run clean && npm run build", "docs:dev": "cd docs && npm run dev", "docs:build": "cd docs && npm run build", "docs:preview": "cd docs && npm run preview", "docs:test": "cd docs && npm run test" }, "dependencies": { "@fjell/core": "^4.4.79", "@fjell/logging": "^4.4.72", "@fjell/registry": "^4.4.86", "@fjell/types": "^4.4.9", "@fjell/validation": "^4.4.6", "deepmerge": "^4.3.1" }, "devDependencies": { "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.38.0", "@fjell/common-config": "^1.1.38", "@swc/core": "^1.13.5", "@tsconfig/recommended": "^1.0.10", "@types/multer": "^2.0.0", "@types/node": "^24.9.1", "@typescript-eslint/eslint-plugin": "^8.46.2", "@typescript-eslint/parser": "^8.46.2", "@vitest/coverage-v8": "^4.0.2", "concurrently": "^9.2.1", "esbuild": "0.25.11", "eslint": "^9.38.0", "nodemon": "^3.1.10", "ts-node": "^10.9.2", "tsc-alias": "^1.8.16", "typescript": "^5.9.3", "vitest": "^4.0.2", "zod": "^4.1.12" }, "repository": { "type": "git", "url": "git+https://github.com/fjellgrunn/lib.git" } }