Skip to content

Commit

Permalink
chore: update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Jul 16, 2021
1 parent 5cd3003 commit e084a89
Showing 1 changed file with 18 additions and 13 deletions.
31 changes: 18 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,23 @@
"description": "Provide logic composition capabilities for Vue.",
"keywords": [
"vue",
"composition-api",
"function-api"
"composition-api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/composition-api.git"
},
"main": "index.js",
"module": "dist/vue-composition-api.esm.js",
"unpkg": "dist/vue-composition-api.prod.js",
"jsdelivr": "dist/vue-composition-api.prod.js",
"typings": "dist/index.d.ts",
"main": "./index.js",
"module": "./dist/vue-composition-api.esm.js",
"unpkg": "./dist/vue-composition-api.prod.js",
"jsdelivr": "./dist/vue-composition-api.prod.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/vue-composition-api.esm.js",
"require": "./index.js"
}
},
"author": {
"name": "liximomo",
"email": "liximomo@gmail.com"
Expand Down Expand Up @@ -43,6 +48,12 @@
"url": "https://github.com/vuejs/composition-api/issues"
},
"homepage": "https://github.com/vuejs/composition-api#readme",
"peerDependencies": {
"vue": ">= 2.5 < 3"
},
"dependencies": {
"tslib": "^2.3.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
Expand All @@ -67,12 +78,6 @@
"vue-router": "^3.5.2",
"vue-server-renderer": "^2.6.14"
},
"peerDependencies": {
"vue": ">= 2.5 < 3"
},
"dependencies": {
"tslib": "^2.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
Expand Down

0 comments on commit e084a89

Please sign in to comment.