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.
 
 
 

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