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

70 строки
1.7 KiB

  1. {
  2. "name": "@intlify/bundle-utils",
  3. "description": "Bundle utilities for Intlify project",
  4. "version": "5.5.0",
  5. "author": {
  6. "name": "kazuya kawaguchi",
  7. "email": "kawakazu80@gmail.com"
  8. },
  9. "bugs": {
  10. "url": "https://github.com/intlify/bundle-tools/issues"
  11. },
  12. "peerDependenciesMeta": {
  13. "petite-vue-i18n": {
  14. "optional": true
  15. },
  16. "vue-i18n": {
  17. "optional": true
  18. }
  19. },
  20. "dependencies": {
  21. "@intlify/message-compiler": "9.3.0-beta.17",
  22. "@intlify/shared": "9.3.0-beta.17",
  23. "acorn": "^8.8.2",
  24. "escodegen": "^2.0.0",
  25. "estree-walker": "^2.0.2",
  26. "jsonc-eslint-parser": "^1.0.1",
  27. "magic-string": "^0.30.0",
  28. "source-map": "0.6.1",
  29. "yaml-eslint-parser": "^0.3.2"
  30. },
  31. "devDependencies": {
  32. "@types/escodegen": "^0.0.7",
  33. "@types/estree": "^1.0.0"
  34. },
  35. "engines": {
  36. "node": ">= 12"
  37. },
  38. "files": [
  39. "lib",
  40. "index.mjs"
  41. ],
  42. "homepage": "https://github.com/intlify/bundle-tools/blob/main/packages/bundle-utils/README.md",
  43. "license": "MIT",
  44. "main": "lib/index.js",
  45. "module": "./index.mjs",
  46. "types": "lib/index.d.ts",
  47. "exports": {
  48. ".": {
  49. "import": "./index.mjs",
  50. "require": "./lib/index.js",
  51. "types": "./lib/index.d.ts"
  52. },
  53. "./lib/*": "./lib/*",
  54. "./package.json": "./package.json"
  55. },
  56. "repository": {
  57. "type": "git",
  58. "url": "git+https://github.com/intlify/bundle-tools.git",
  59. "directory": "packages/bundle-utils"
  60. },
  61. "scripts": {
  62. "build": "tsc -p .",
  63. "clean": "npm-run-all \"clean:*\"",
  64. "clean:lib": "rm -rf ./lib",
  65. "watch": "tsc -p . --watch",
  66. "changelog": "jiti ../../scripts/changelog.ts",
  67. "release": "jiti ../../scripts/release.ts"
  68. }
  69. }