KawAnime/package.json

97 lines
2.9 KiB
JSON

{
"name": "KawAnime",
"version": "0.4.1",
"main": "background.js",
"repository": "https://github.com/Kylart/KawAnime.git",
"description": "The ultimate otaku software",
"author": {
"name": "Kylart",
"email": "Kylart.dev@gmail.com"
},
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development vue-cli-service electron:serve",
"start": "cross-env NODE_ENV=production electron dist/bundled/background.js",
"build": "vue-cli-service electron:build",
"pack": "npm run build -- --dir",
"dist": "npm run dist:mac && npm run dist:win && npm run dist:linux",
"dist:mac": "npm run build -- --mac",
"dist:win": "npm run build -- --win --x64 --ia32",
"dist:linux": "npm run build -- --linux deb AppImage",
"publish:mac": "npm run build -- --mac -p always",
"publish:linux": "npm run build -- --linux deb AppImage -p always",
"publish:win": "npm run build -- --win --x64 --ia32 -p always",
"lint": "vue-cli-service lint",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"test": "cross-env IS_TEST=true mocha --reporter mochawesome"
},
"dependencies": {
"anitomy-js": "^3.1.3",
"buttercup": "^2.15.4",
"chalk": "^2.4.2",
"electron-updater": "^4.1.2",
"lodash": "^4.17.15",
"mal-scraper": "^2.6.3",
"matroska-subtitles": "^2.0.3",
"mime": "^2.4.4",
"moment": "^2.24.0",
"nyaapi": "^2.1.0",
"range-parser": "^1.2.1",
"rimraf": "^3.0.0",
"velocity-animate": "^1.5.2",
"vue": "^2.6.10",
"vue-router": "^3.1.3",
"vuetify": "^2.0.18",
"vuex": "^3.1.1",
"webtorrent": "^0.104.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-eslint": "^3.11.0",
"@vue/cli-plugin-pwa": "^3.11.0",
"@vue/cli-plugin-unit-mocha": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"axios": "^0.19.0",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.2.1",
"electron": "^4.2.5",
"electron-builder": "20.41.0",
"eslint": "^6.4.0",
"eslint-plugin-vue": "^5.2.3",
"lint-staged": "^9.2.5",
"material-design-icons-iconfont": "^5.0.1",
"mocha": "^6.2.0",
"mochawesome": "^4.1.0",
"pug": "^2.0.4",
"pug-plain-loader": "^1.0.0",
"roboto-fontface": "^0.10.0",
"sass": "^1.22.12",
"sass-loader": "^7.2.0",
"spectron": "^6.0.0",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"vue-cli-plugin-electron-builder": "^1.3.5",
"vue-cli-plugin-vuetify": "^0.6.3",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.3.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}