版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

83 строки
2.3 KiB

  1. {
  2. "name": "@yankeeinlondon/builder-api",
  3. "version": "1.4.1",
  4. "type": "module",
  5. "packageManager": "pnpm@7.18.2",
  6. "description": "An API used to extend the capabilities of @antfu/vite-plugin-md",
  7. "scripts": {
  8. "build": "tsup src/index.ts --format=esm --dts --clean ",
  9. "lint": "run-p lint:*",
  10. "lint:src": "eslint src/**/*.ts --fix",
  11. "lint:test": "eslint test/**/*.ts --fix",
  12. "lint:tsc": "tsc --noEmit",
  13. "lint:node": "tsup src/index.ts --format=esm && node dist/index.js",
  14. "test": "vitest",
  15. "test:ci": "vitest run",
  16. "test:ui": "vitest:ui",
  17. "watch": "tsup src/index.ts --format=esm --dts --watch",
  18. "audit:fix": "pnpm audit --fix",
  19. "release": "run-s lint release:latest test:ci audit:fix release:bump",
  20. "release:latest": "pnpm install",
  21. "release:bump": "bumpp"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/yankeeinlondon/builder-api.git"
  26. },
  27. "keywords": [
  28. "markdown",
  29. "vitejs",
  30. "vite",
  31. "vuejs"
  32. ],
  33. "files": [
  34. "dist"
  35. ],
  36. "author": "Ken Snyder <ken@ken.net>",
  37. "license": "MIT",
  38. "exports": {
  39. ".": {
  40. "types": "./dist/index.d.ts",
  41. "import": "./dist/index.js"
  42. }
  43. },
  44. "module": "./dist/index.js",
  45. "types": "./dist/index.d.ts",
  46. "bugs": {
  47. "url": "https://github.com/yankeeinlondon/builder-api/issues"
  48. },
  49. "homepage": "https://github.com/yankeeinlondon/builder-api#readme",
  50. "dependencies": {
  51. "@types/markdown-it": "^12.2.3",
  52. "@yankeeinlondon/happy-wrapper": "^2.10.1",
  53. "fp-ts": "^2.13.1",
  54. "inferred-types": "^0.37.6",
  55. "markdown-it": "^13.0.1",
  56. "vite-plugin-md": ">=0.22.5"
  57. },
  58. "devDependencies": {
  59. "@type-challenges/utils": "^0.1.1",
  60. "@types/markdown-it": "^12.2.3",
  61. "@types/node": "^14.18.35",
  62. "@typescript-eslint/eslint-plugin": "^5.46.1",
  63. "@typescript-eslint/parser": "^5.46.1",
  64. "@vitejs/plugin-vue": "^4.0.0",
  65. "@vitest/ui": "^0.25.8",
  66. "bumpp": "^8.2.1",
  67. "eslint": "^8.29.0",
  68. "eslint-config-prettier": "^8.5.0",
  69. "eslint-plugin-import": "^2.26.0",
  70. "eslint-plugin-prettier": "^4.2.1",
  71. "eslint-plugin-promise": "^6.1.1",
  72. "eslint-plugin-unicorn": "^45.0.2",
  73. "happy-dom": "^8.1.0",
  74. "npm-run-all": "^4.1.5",
  75. "prettier": "^2.8.1",
  76. "tsup": "^6.5.0",
  77. "typescript": "^4.9.4",
  78. "vite": "^4.0.1",
  79. "vitest": "^0.25.8",
  80. "vue": "^3.2.45"
  81. }
  82. }