Commit 41026bbe authored by ChanHaeng Lee's avatar ChanHaeng Lee
Browse files

Deleted configuration file to publish `@fedify/denokv` to NPM

parent 35304576
Loading
Loading
Loading
Loading

packages/denokv/package.json

deleted100644 → 0
+0 −68
Original line number Diff line number Diff line
{
  "name": "@fedify/denokv",
  "version": "1.9.0",
  "description": "",
  "keywords": [
    "Fedify",
    "ActivityPub",
    "Fediverse",
    "Deno KV"
  ],
  "author": {
    "name": "Hong Minhee",
    "email": "hong@minhee.org",
    "url": "https://hongminhee.org/"
  },
  "homepage": "https://fedify.dev/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fedify-dev/fedify.git",
    "directory": "packages/denokv"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/fedify-dev/fedify/issues"
  },
  "funding": [
    "https://opencollective.com/fedify",
    "https://github.com/sponsors/dahlia"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "require": {
        "types": "./dist/index.d.ts",
        "import": "./dist/index.js",
        "default": "./dist/index.js"
      },
      "import": {
        "types": "./dist/index.d.ts",
        "import": "./dist/index.js",
        "default": "./dist/index.js"
      }
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist/",
    "package.json"
  ],
  "peerDependencies": {
    "@fedify/fedify": "workspace:"
  },
  "dependencies": {
    "es-toolkit": "catalog:"
  },
  "devDependencies": {
    "tsdown": "catalog:",
    "typescript": "catalog:"
  },
  "scripts": {
    "build": "tsdown",
    "prepack": "tsdown",
    "prepublish": "tsdown"
  }
}

packages/denokv/tsdown.config.ts

deleted100644 → 0
+0 −7
Original line number Diff line number Diff line
import { defineConfig } from "tsdown";

export default defineConfig({
  entry: ["src/mod.ts"],
  dts: true,
  platform: "node",
});