{
  "name": "trifid-core",
  "description": "Trifid Core",
  "type": "module",
  "version": "6.0.1",
  "license": "Apache-2.0",
  "homepage": "https://github.com/zazuko/trifid",
  "repository": {
    "type": "git",
    "url": "https://github.com/zazuko/trifid.git",
    "directory": "packages/core"
  },
  "bugs": {
    "url": "https://github.com/zazuko/trifid/issues"
  },
  "files": [
    "dist/",
    "lib/config/schema.json",
    "server.js",
    "config.yaml",
    "config2.json",
    "logo.svg",
    "CHANGELOG.md"
  ],
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "source": "./index.ts",
      "default": "./dist/index.js"
    },
    "./plugins/*.js": {
      "source": "./plugins/*.ts",
      "default": "./dist/plugins/*.js"
    },
    "./package.json": "./package.json"
  },
  "bin": {
    "trifid-core": "./server.js"
  },
  "author": {
    "name": "Zazuko GmbH",
    "url": "https://zazuko.com/"
  },
  "keywords": [
    "trifid",
    "trifid-plugin",
    "core"
  ],
  "dependencies": {
    "@fastify/accepts": "^5.0.4",
    "@fastify/compress": "^9.0.0",
    "@fastify/cookie": "^11.0.2",
    "@fastify/cors": "^11.2.0",
    "@fastify/formbody": "^8.0.2",
    "@fastify/otel": "^0.18.1",
    "@fastify/static": "^9.1.3",
    "@fontsource/playfair-display": "^5.2.8",
    "@fontsource/roboto": "^5.2.9",
    "@opentelemetry/api": "^1.9.1",
    "@opentelemetry/auto-instrumentations-node": "^0.77.0",
    "@opentelemetry/exporter-metrics-otlp-http": "^0.219.0",
    "@opentelemetry/exporter-trace-otlp-http": "^0.219.0",
    "@opentelemetry/resources": "^2.8.0",
    "@opentelemetry/sdk-metrics": "^2.8.0",
    "@opentelemetry/sdk-node": "^0.219.0",
    "@opentelemetry/semantic-conventions": "^1.41.1",
    "@rdfjs-elements/formats-pretty": "^0.6.8",
    "@types/sparql-http-client": "^3.1.0",
    "ajv": "^8.20.0",
    "commander": "^14.0.3",
    "fastify": "^5.8.5",
    "handlebars": "^4.7.9",
    "import-meta-resolve": "^4.2.0",
    "json5": "^2.2.3",
    "lodash": "^4.18.1",
    "pino": "^10.3.1",
    "pino-pretty": "^13.1.3",
    "sparql-http-client": "^3.1.0",
    "string-replace-stream": "^0.0.2",
    "yaml": "^2.8.3"
  },
  "devDependencies": {
    "@rdfjs/types": "^2.0.1",
    "@types/lodash": "^4.17.24",
    "@types/node": "^25.5.0",
    "c8": "^11.0.0",
    "nodemon": "^3.1.11",
    "rimraf": "^6.1.3",
    "typescript": "^6.0.3"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "scripts": {
    "test": "c8 --all --exclude='**/*.d.ts' --exclude='**/types/**' --exclude='test/**' --exclude=dist --exclude=scripts --exclude=coverage --reporter=lcov --reporter=text node --conditions=source --test test/**.test.ts test/**/*.test.ts",
    "watch": "nodemon server.ts",
    "typecheck": "tsc --noEmit",
    "build": "tsc && node scripts/copy-assets.ts",
    "clean": "rimraf *.tgz dist/ coverage/",
    "release": "changeset publish"
  }
}