Get transcript summaries of Web videos.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

72 lines
1.8 KiB

  1. {
  2. "name": "@modal-sh/webvideo-transcript-summary-core",
  3. "version": "0.0.0",
  4. "files": [
  5. "dist",
  6. "src"
  7. ],
  8. "engines": {
  9. "node": ">=12"
  10. },
  11. "license": "MIT",
  12. "keywords": [
  13. "pridepack"
  14. ],
  15. "devDependencies": {
  16. "@types/node": "^18.14.1",
  17. "eslint": "^8.35.0",
  18. "eslint-config-lxsmnsyc": "^0.5.0",
  19. "pridepack": "2.4.4",
  20. "tslib": "^2.5.0",
  21. "typescript": "^4.9.5",
  22. "vitest": "^0.28.1"
  23. },
  24. "scripts": {
  25. "prepublishOnly": "pridepack clean && pridepack build",
  26. "build": "pridepack build",
  27. "type-check": "pridepack check",
  28. "lint": "pridepack lint",
  29. "clean": "pridepack clean",
  30. "watch": "pridepack watch",
  31. "start": "pridepack start",
  32. "dev": "pridepack dev",
  33. "test": "vitest"
  34. },
  35. "private": false,
  36. "description": "Get transcript summaries of Web videos.",
  37. "repository": {
  38. "url": "https://code.modal.sh/modal-soft/webvideo-transcript-summary-core",
  39. "type": "git"
  40. },
  41. "homepage": "https://code.modal.sh/modal-soft/webvideo-transcript-summary-core",
  42. "bugs": {
  43. "url": "https://code.modal.sh/modal-soft/webvideo-transcript-summary-core/issues"
  44. },
  45. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  46. "publishConfig": {
  47. "access": "public"
  48. },
  49. "dependencies": {
  50. "@modal-sh/mio-ai": "link:../../../openai-utils",
  51. "fetch-ponyfill": "^7.1.0",
  52. "handlebars": "^4.7.7"
  53. },
  54. "types": "./dist/types/index.d.ts",
  55. "main": "./dist/cjs/production/index.js",
  56. "module": "./dist/esm/production/index.js",
  57. "exports": {
  58. ".": {
  59. "development": {
  60. "require": "./dist/cjs/development/index.js",
  61. "import": "./dist/esm/development/index.js"
  62. },
  63. "require": "./dist/cjs/production/index.js",
  64. "import": "./dist/esm/production/index.js",
  65. "types": "./dist/types/index.d.ts"
  66. }
  67. },
  68. "typesVersions": {
  69. "*": {}
  70. }
  71. }