-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 962 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
38
39
40
41
{
"name": "vue-decorator",
"version": "1.1.3",
"description": "Custom decorators to vue-class-component that fits Vue 3",
"main": "lib/index.umd.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"files": [
"lib"
],
"keywords": [
"vue",
"vue3",
"typescript",
"decorator"
],
"author": "calebeaires",
"license": "MIT",
"scripts": {
"build": "tsc -p ./src/tsconfig.json && rollup -c",
"test": "jest"
},
"dependencies": {
},
"devDependencies": {
"rollup": "^2.35.1",
"typescript": "^4.1.3",
"vue": "^3.0.11",
"vue-class-component": "^8.0.0-rc.1",
"vue-property-decorator": "^10.0.0-rc.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calebeaires/vue-decorator.git"
},
"bugs": {
"url": "https://github.com/calebeaires/vue-decorator/issues"
},
"homepage": "https://github.com/calebeaires/vue-decorator#readme"
}