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