all repos — kitten @ 3ef01075f6f81067a08717f037cbb9b226e194a7

pkgs/router/package.json (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
{
	"name": "@purrkit/router",
	"version": "1.0.3",
	"license": "EUPL-1.2",
	"author": {
		"name": "apr",
		"email": "apr@vt3e.cat",
		"url": "https://vt3e.cat/"
	},
	"files": [
		"dist",
		"README.md",
		"LICENSE",
		"GET-STARTED.md"
	],
	"type": "module",
	"module": "src/index.ts",
	"exports": {
		".": "./dist/index.js"
	},
	"scripts": {
		"build:types": "tsc --emitDeclarationOnly",
		"build:js": "bun build ./src/index.ts --outdir ./dist --minify --target bun",
		"build": "bun run build:types && bun run build:js",
		"prepublishOnly": "bun run build"
	},
	"devDependencies": {
		"@types/bun": "latest"
	},
	"peerDependencies": {
		"discord.js": "^14.26.4",
		"typescript": "^5"
	},
	"readme": "./README.md"
}