Design system.
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.
 
 
 

81 lines
1.9 KiB

  1. {
  2. "name": "amanuensis",
  3. "version": "0.0.0",
  4. "files": [
  5. "dist",
  6. "src"
  7. ],
  8. "bin": {
  9. "amanuensis": "./dist/cjs/production/index.js"
  10. },
  11. "engines": {
  12. "node": ">=12"
  13. },
  14. "license": "MIT",
  15. "keywords": [
  16. "pridepack"
  17. ],
  18. "devDependencies": {
  19. "@types/node": "^18.14.1",
  20. "@types/yargs": "^17.0.24",
  21. "eslint": "^8.35.0",
  22. "eslint-config-lxsmnsyc": "^0.5.0",
  23. "pridepack": "2.4.4",
  24. "tslib": "^2.5.0",
  25. "typescript": "^4.9.5",
  26. "vitest": "^0.28.1"
  27. },
  28. "scripts": {
  29. "prepublishOnly": "pridepack clean && pridepack build",
  30. "build": "pridepack build && chmod +x ./dist/cjs/production/index.js",
  31. "type-check": "pridepack check",
  32. "lint": "pridepack lint",
  33. "clean": "pridepack clean",
  34. "watch": "pridepack watch",
  35. "start": "node ./dist/cjs/development/amanuensis.js",
  36. "dev": "pridepack dev",
  37. "serve": "next dev",
  38. "test": "vitest"
  39. },
  40. "private": false,
  41. "description": "Generate documentation for your libraries.",
  42. "repository": {
  43. "url": "",
  44. "type": "git"
  45. },
  46. "homepage": "",
  47. "bugs": {
  48. "url": ""
  49. },
  50. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  51. "publishConfig": {
  52. "access": "public"
  53. },
  54. "dependencies": {
  55. "execa": "^7.2.0",
  56. "glob": "^10.3.3",
  57. "minimatch": "^9.0.3",
  58. "mkdirp": "^3.0.1",
  59. "react-markdown": "^8.0.7",
  60. "typedoc": "^0.24.8",
  61. "yargs": "^17.7.2"
  62. },
  63. "types": "./dist/types/index.d.ts",
  64. "main": "./dist/cjs/production/index.js",
  65. "module": "./dist/esm/production/index.js",
  66. "exports": {
  67. ".": {
  68. "development": {
  69. "require": "./dist/cjs/development/index.js",
  70. "import": "./dist/esm/development/index.js"
  71. },
  72. "require": "./dist/cjs/production/index.js",
  73. "import": "./dist/esm/production/index.js",
  74. "types": "./dist/types/index.d.ts"
  75. }
  76. },
  77. "typesVersions": {
  78. "*": {}
  79. }
  80. }