Files
ionic-framework/packages/vue/package.json
Liam DeBeasi c4064f7889 0.5.0
2020-09-24 11:43:16 -04:00

61 lines
1.4 KiB
JSON

{
"name": "@ionic/vue",
"version": "0.5.0",
"description": "Vue specific wrapper for @ionic/core",
"scripts": {
"lint": "echo add linter",
"test": "jest",
"build": "npm run clean && npm run copy && npm run copy.overlays && npm run compile && npm run bundle",
"bundle": "rollup --config rollup.config.js",
"clean": "rimraf dist dist-transpiled",
"compile": "npm run tsc",
"tsc": "tsc -p .",
"copy": "node ./scripts/copy-css.js",
"copy.overlays": "node ./scripts/copy-overlays.js"
},
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist/",
"css/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/ionic.git"
},
"keywords": [
"ionic",
"framework",
"vue",
"mobile",
"app",
"hybrid",
"webapp",
"cordova",
"progressive",
"web",
"app",
"pwa"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ionic-team/ionic/issues"
},
"homepage": "https://github.com/ionic-team/ionic#readme",
"devDependencies": {
"@stencil/core": "^1.17.0",
"rimraf": "^3.0.2",
"rollup": "^2.28.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^3.9.7",
"vue": "^3.0.0",
"vue-router": "^4.0.0-beta.11"
},
"dependencies": {
"@ionic/core": "0.5.0",
"ionicons": "^5.1.2"
}
}