-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
77 lines (77 loc) · 2.27 KB
/
package.json
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "vue-tsx-support",
"version": "3.2.0",
"description": "TSX (JSX for TypeScript) support library for Vue",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "lib/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
},
"./lib/*": {
"import": "./dist/esm/*.js",
"require": "./dist/cjs/*.js",
"default": "./dist/esm/*.js"
}
},
"scripts": {
"clean": "rimraf lib dist test/tsc/**/.temp",
"build:esm": "tsc -p tsconfig.json --outDir dist/esm --module esnext",
"build:cjs": "tsc -p tsconfig.json --outDir dist/cjs --module commonjs",
"build": "npm-run-all build:*",
"prettier": "prettier --list-different \"{src,types,options,test}/**/*.{ts,tsx}\"",
"prettier:fix": "prettier --write \"{src,types,options,test}/**/*.{ts,tsx}\"",
"jest": "jest",
"tsc-test": "node test/tsc/runner.js",
"test": "npm-run-all prettier tsc-test jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wonderful-panda/vue-tsx-support.git"
},
"keywords": [
"Vue",
"TypeScript",
"JSX",
"TSX"
],
"author": "Iwata Hidetaka <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wonderful-panda/vue-tsx-support/issues"
},
"homepage": "https://github.com/wonderful-panda/vue-tsx-support#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-syntax-jsx": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@types/jest": "^26.0.15",
"@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
"@vue/babel-preset-jsx": "^1.2.4",
"@vue/composition-api": "^1.0.0-beta.19",
"@vue/test-utils": "1.1.1",
"babel-jest": "26.6.3",
"glob": "^7.1.6",
"hoek": "^6.1.3",
"jest": "26.6.3",
"lodash": "^4.17.20",
"mixin-deep": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "3.9.2",
"vue": "2.6.12",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.0.2",
"vue-router": "^3.4.9",
"vue-template-compiler": "2.6.12"
},
"peerDependencies": {
"typescript": ">=3.8.0",
"vue": ">=2.6.0"
}
}