-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 818 Bytes
/
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
{
"name": "vue-ts-utils",
"version": "0.2.3",
"description": "Typescript utils for Vue2 and Vue3",
"main": "src/index.ts",
"typings": "./lib/src/index.d.ts",
"files": [
"src",
"lib"
],
"scripts": {
"test-dts": "tsc",
"build-dts": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build-dts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rudyxu1102/vue-ts-utils.git"
},
"keywords": [
"typescript",
"vue3"
],
"author": "rudyxu1102",
"license": "MIT",
"bugs": {
"url": "https://github.com/rudyxu1102/vue-ts-utils/issues"
},
"homepage": "https://github.com/rudyxu1102/vue-ts-utils#readme",
"dependencies": {
"vue": "3.3.4",
"vue2": "npm:vue@^2.7.14"
},
"devDependencies": {
"typescript": "4.8.2"
}
}