mono/packages/bot/package.json
2025-08-11 12:25:45 +02:00

71 lines
1.8 KiB
JSON

{
"name": "@polymech/media",
"version": "0.3.0",
"typings": "index.d.ts",
"publishConfig": {
"access": "public"
},
"bin": {
"pm-media": "dist-in/main.js"
},
"type": "module",
"exports": {
".": "./dist-in/index.js"
},
"dependencies": {
"@polymech/cache": "file:../cache",
"@polymech/commons": "file:../commons",
"@polymech/core": "file:../core",
"@polymech/fs": "file:../fs",
"@polymech/log": "file:../log",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node": "^24.0.10",
"apify": "^3.4.4",
"bluebird": "^3.7.2",
"crawlee": "^3.14.1",
"download": "^8.0.0",
"fast-glob": "^3.3.2",
"fluent-ffmpeg": "^2.1.3",
"glob": "^11.0.0",
"js-beautify": "^1.14.6",
"mupdf": "^1.3.3",
"normalize-url": "^8.0.2",
"p-map": "^7.0.3",
"puppeteer": "^24.16.0",
"slugify": "^1.6.6",
"ts-md5": "^2.0.1",
"tslog": "^4.9.3",
"typescript": "^5.8.3",
"yargs": "^18.0.0",
"zod": "^3.25.74"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/showdown": "^2.0.6",
"vitest": "^3.1.1"
},
"scripts": {
"test": "tsc; mocha --full-trace mocha \"spec/**/*.spec.js\"",
"test:pdf": "vitest run tests/pdf",
"test-with-coverage": "istanbul cover node_modules/.bin/_mocha -- 'spec/**/*.spec.js'",
"lint": "tslint --project=./tsconfig.json",
"build": "tsc -p .",
"dev": "tsc -p . --declaration -w",
"typings": "tsc --declaration",
"docs": "npx typedoc src/index.ts",
"dev-test-watch": "mocha-typescript-watch"
},
"homepage": "https://git.osr-plastic.org/osr-plastic/osr-media",
"repository": {
"type": "git",
"url": "://git.osr-plastic.org/osr-plastic/osr-media.git"
},
"engines": {
"node": ">= 14.0.0"
},
"license": "BSD-3-Clause",
"keywords": [
"typescript"
]
}