Compile PDF and EPUB files from static Web assets.
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.
 
 

69 regels
1.6 KiB

  1. {
  2. "name": "@modal-sh/patchouli-web-api",
  3. "version": "0.0.0",
  4. "files": [
  5. "dist",
  6. "src"
  7. ],
  8. "engines": {
  9. "node": ">=12"
  10. },
  11. "keywords": [
  12. "pridepack"
  13. ],
  14. "devDependencies": {
  15. "@types/node": "^20.12.7",
  16. "pridepack": "2.6.0",
  17. "tslib": "^2.6.2",
  18. "typescript": "^5.4.5",
  19. "vite": "^5.2.10",
  20. "vitest": "^1.5.0"
  21. },
  22. "dependencies": {
  23. "@modal-sh/patchouli-core": "workspace:*",
  24. "fastify": "^4.26.2"
  25. },
  26. "scripts": {
  27. "prepublishOnly": "pridepack clean && pridepack build",
  28. "build": "pridepack build",
  29. "type-check": "pridepack check",
  30. "lint": "pridepack lint",
  31. "clean": "pridepack clean",
  32. "watch": "pridepack watch",
  33. "start": "pridepack start",
  34. "dev": "pridepack dev",
  35. "test": "vitest"
  36. },
  37. "private": true,
  38. "description": "Web API for Patchouli--Compile PDF and EPUB files from static Web assets.",
  39. "repository": {
  40. "url": "",
  41. "type": "git"
  42. },
  43. "homepage": "",
  44. "bugs": {
  45. "url": ""
  46. },
  47. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  48. "publishConfig": {
  49. "access": "restricted"
  50. },
  51. "types": "./dist/types/index.d.ts",
  52. "main": "./dist/cjs/production/index.js",
  53. "module": "./dist/esm/production/index.js",
  54. "exports": {
  55. ".": {
  56. "development": {
  57. "require": "./dist/cjs/development/index.js",
  58. "import": "./dist/esm/development/index.js"
  59. },
  60. "require": "./dist/cjs/production/index.js",
  61. "import": "./dist/esm/production/index.js",
  62. "types": "./dist/types/index.d.ts"
  63. }
  64. },
  65. "typesVersions": {
  66. "*": {}
  67. }
  68. }