package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@nuxt/components",
  3. "version": "2.2.1",
  4. "description": "Auto Import Components for Nuxt.js",
  5. "repository": "nuxt/components",
  6. "license": "MIT",
  7. "exports": {
  8. ".": "./dist/index.js",
  9. "./*": "./*",
  10. "./package.json": "./package.json",
  11. "./loader": "./dist/loader.js"
  12. },
  13. "main": "dist/index.js",
  14. "types": "dist/index.d.ts",
  15. "files": [
  16. "dist",
  17. "lib",
  18. "templates"
  19. ],
  20. "scripts": {
  21. "build": "siroc build",
  22. "dev": "nuxt dev test/fixture",
  23. "lint": "eslint --ext .ts,.js,.vue .",
  24. "prepare": "yarn link && yarn link @nuxt/components",
  25. "prepublishOnly": "yarn build",
  26. "release": "yarn test && standard-version && git push --follow-tags && npm publish",
  27. "test": "yarn lint && jest --verbose"
  28. },
  29. "dependencies": {
  30. "chalk": "^4.1.2",
  31. "chokidar": "^3.5.2",
  32. "glob": "^7.1.7",
  33. "globby": "^11.0.4",
  34. "scule": "^0.2.1",
  35. "semver": "^7.3.5",
  36. "upath": "^2.0.1",
  37. "vue-template-compiler": "^2.6.14"
  38. },
  39. "devDependencies": {
  40. "@babel/preset-env": "latest",
  41. "@babel/preset-typescript": "latest",
  42. "@nuxt/test-utils": "latest",
  43. "@nuxt/types": "latest",
  44. "@nuxt/typescript-build": "latest",
  45. "@nuxt/typescript-runtime": "latest",
  46. "@nuxtjs/eslint-config-typescript": "latest",
  47. "@types/jest": "latest",
  48. "@types/loader-utils": "latest",
  49. "@types/lodash": "latest",
  50. "@types/semver": "latest",
  51. "consola": "latest",
  52. "eslint": "latest",
  53. "jest": "latest",
  54. "loader-utils": "latest",
  55. "nuxt-edge": "latest",
  56. "pug": "latest",
  57. "pug-plain-loader": "latest",
  58. "siroc": "0.15.0",
  59. "standard-version": "latest"
  60. },
  61. "peerDependencies": {
  62. "consola": "*"
  63. }
  64. }