HATEOAS-first backend framework.
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.

67 lines
1.5 KiB

  1. {
  2. "name": "@modal-sh/yasumi-data-source-file-jsonl",
  3. "version": "0.0.0",
  4. "files": [
  5. "dist",
  6. "src"
  7. ],
  8. "engines": {
  9. "node": ">=16"
  10. },
  11. "license": "MIT",
  12. "keywords": [
  13. "pridepack"
  14. ],
  15. "devDependencies": {
  16. "@types/node": "^20.11.0",
  17. "pridepack": "2.6.0",
  18. "tslib": "^2.6.2",
  19. "typescript": "^5.3.3",
  20. "vitest": "^1.2.0"
  21. },
  22. "scripts": {
  23. "prepublishOnly": "pridepack clean && pridepack build",
  24. "build": "pridepack build",
  25. "type-check": "pridepack check",
  26. "clean": "pridepack clean",
  27. "watch": "pridepack watch",
  28. "start": "pridepack start",
  29. "dev": "pridepack dev",
  30. "test": "vitest"
  31. },
  32. "dependencies": {
  33. "@modal-sh/yasumi": "*"
  34. },
  35. "private": false,
  36. "description": "JSON lines file data source for yasumi.",
  37. "repository": {
  38. "url": "",
  39. "type": "git"
  40. },
  41. "homepage": "",
  42. "bugs": {
  43. "url": ""
  44. },
  45. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  46. "publishConfig": {
  47. "access": "public"
  48. },
  49. "types": "./dist/types/index.d.ts",
  50. "main": "./dist/cjs/production/index.js",
  51. "module": "./dist/esm/production/index.js",
  52. "exports": {
  53. ".": {
  54. "development": {
  55. "require": "./dist/cjs/development/index.js",
  56. "import": "./dist/esm/development/index.js"
  57. },
  58. "require": "./dist/cjs/production/index.js",
  59. "import": "./dist/esm/production/index.js",
  60. "types": "./dist/types/index.d.ts"
  61. }
  62. },
  63. "typesVersions": {
  64. "*": {}
  65. }
  66. }