mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-08 07:41:51 +08:00
84 lines
2.3 KiB
JSON
84 lines
2.3 KiB
JSON
{
|
|
"name": "@ionic/vue",
|
|
"version": "8.7.5",
|
|
"description": "Vue specific wrapper for @ionic/core",
|
|
"scripts": {
|
|
"eslint": "eslint src",
|
|
"prettier": "prettier \"./src/**/*.{html,ts,tsx,js,jsx}\"",
|
|
"lint": "npm run eslint && npm run prettier -- --write --cache",
|
|
"lint.fix": "npm run eslint -- --fix && npm run prettier -- --write --cache",
|
|
"test": "jest",
|
|
"build": "npm run clean && npm run copy && npm run copy.overlays && npm run bundle && npm run build.vetur && npm run build.web-types",
|
|
"build.watch": "npm run bundle -- --watch",
|
|
"bundle": "rollup --config rollup.config.mjs",
|
|
"clean": "rimraf dist",
|
|
"build.web-types": "node ./scripts/build-web-types.js",
|
|
"build.vetur": "node ./scripts/build-vetur.js",
|
|
"copy": "node ./scripts/copy-css.js",
|
|
"copy.overlays": "node ./scripts/copy-overlays.js",
|
|
"sync": "sh ./scripts/sync.sh",
|
|
"local.sync.and.pack": "./scripts/sync-and-pack.sh"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/types/index.d.ts",
|
|
"files": [
|
|
"dist/",
|
|
"css/"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ionic-team/ionic-framework.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-framework/issues"
|
|
},
|
|
"homepage": "https://github.com/ionic-team/ionic-framework#readme",
|
|
"devDependencies": {
|
|
"@babel/types": "^7.18.4",
|
|
"@ionic/eslint-config": "^0.3.0",
|
|
"@ionic/prettier-config": "^2.0.0",
|
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
"@rollup/plugin-typescript": "^11.1.5",
|
|
"@typescript-eslint/eslint-plugin": "^5.48.2",
|
|
"@typescript-eslint/parser": "^5.48.2",
|
|
"change-case": "^4.1.1",
|
|
"eslint": "^7.32.0",
|
|
"fs-extra": "^9.1.0",
|
|
"prettier": "^2.8.3",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^4.2.0",
|
|
"typescript": "^5.7.3",
|
|
"vue": "3.4.38",
|
|
"vue-router": "^4.0.16"
|
|
},
|
|
"dependencies": {
|
|
"@ionic/core": "^8.7.5",
|
|
"@stencil/vue-output-target": "0.10.7",
|
|
"ionicons": "^8.0.13"
|
|
},
|
|
"vetur": {
|
|
"tags": "dist/vetur/tags.json",
|
|
"attributes": "dist/vetur/attributes.json"
|
|
},
|
|
"web-types": "dist/web-types.json",
|
|
"sideEffects": [
|
|
"css/*.css"
|
|
]
|
|
}
|