package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@vue/babel-plugin-jsx",
  3. "version": "1.1.1",
  4. "description": "Babel plugin for Vue 3.0 JSX",
  5. "author": "Amour1688 <lcz_1996@foxmail.com>",
  6. "homepage": "https://github.com/vuejs/jsx-next/tree/dev/packages/babel-plugin-jsx#readme",
  7. "license": "MIT",
  8. "main": "dist/index.js",
  9. "repository": {
  10. "type": "git",
  11. "url": "git+https://github.com/vuejs/jsx-next.git"
  12. },
  13. "scripts": {
  14. "build": "rm -rf dist && tsc",
  15. "watch": "rm -rf dist && tsc --watch",
  16. "lint": "eslint 'src/*.ts'",
  17. "test": "yarn build && jest --coverage",
  18. "prepublishOnly": "yarn build"
  19. },
  20. "bugs": {
  21. "url": "https://github.com/vuejs/jsx-next/issues"
  22. },
  23. "files": [
  24. "dist"
  25. ],
  26. "dependencies": {
  27. "@babel/helper-module-imports": "^7.0.0",
  28. "@babel/plugin-syntax-jsx": "^7.0.0",
  29. "@babel/template": "^7.0.0",
  30. "@babel/traverse": "^7.0.0",
  31. "@babel/types": "^7.0.0",
  32. "@vue/babel-helper-vue-transform-on": "^1.0.2",
  33. "camelcase": "^6.0.0",
  34. "html-tags": "^3.1.0",
  35. "svg-tags": "^1.0.0"
  36. },
  37. "devDependencies": {
  38. "@babel/core": "^7.15.5",
  39. "@babel/preset-env": "^7.15.4",
  40. "@types/jest": "^26.0.24",
  41. "@types/svg-tags": "^1.0.0",
  42. "@typescript-eslint/eslint-plugin": "^4.30.0",
  43. "@typescript-eslint/parser": "^4.30.0",
  44. "@vue/compiler-dom": "3.2.8",
  45. "@vue/test-utils": "2.0.0-beta.2",
  46. "jest": "^26.0.1",
  47. "regenerator-runtime": "^0.13.9",
  48. "ts-jest": "^26.1.3",
  49. "typescript": "^4.4.2",
  50. "vue": "3.2.8"
  51. },
  52. "gitHead": "04fb7f7780a47a7c82f8c7f34b548950f288b4e5"
  53. }