mirror of https://github.com/Kylart/KawAnime.git
87 lines
2.5 KiB
JSON
87 lines
2.5 KiB
JSON
{
|
|
"name": "KawAnime",
|
|
"version": "0.4.0",
|
|
"main": "background.js",
|
|
"repository": "https://github.com/Kylart/KawAnime.git",
|
|
"author": {
|
|
"name": "Kylart",
|
|
"email": "Kylart.dev@gmail.com"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev": "cross-env NODE_ENV=development vue-cli-service electron:serve",
|
|
"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",
|
|
"lint": "vue-cli-service lint",
|
|
"postinstall": "electron-builder install-app-deps",
|
|
"postuninstall": "electron-builder install-app-deps",
|
|
"test:e2e": "vue-cli-service test:e2e",
|
|
"test:unit": "vue-cli-service test:unit"
|
|
},
|
|
"dependencies": {
|
|
"buttercup": "^2.12.0",
|
|
"chalk": "^2.4.2",
|
|
"electron-updater": "^4.0.6",
|
|
"lodash": "^4.17.11",
|
|
"lru-cache": "^5.1.1",
|
|
"mal-scraper": "^2.6.0",
|
|
"matroska-subtitles": "^2.0.3",
|
|
"mime": "^2.4.2",
|
|
"moment": "^2.24.0",
|
|
"nyaapi": "^2.0.5",
|
|
"rage-edit": "^1.2.0",
|
|
"range-parser": "^1.2.0",
|
|
"register-service-worker": "^1.6.2",
|
|
"rimraf": "^2.6.3",
|
|
"velocity-animate": "^1.5.2",
|
|
"vue": "^2.6.10",
|
|
"vue-router": "^3.0.2",
|
|
"vuetify": "^1.5.9",
|
|
"vuex": "^3.1.0",
|
|
"webtorrent": "^0.103.1",
|
|
"zettai": "^2.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@vue/cli-plugin-babel": "^3.5.5",
|
|
"@vue/cli-plugin-e2e-cypress": "^3.5.1",
|
|
"@vue/cli-plugin-eslint": "^3.5.1",
|
|
"@vue/cli-plugin-pwa": "^3.5.1",
|
|
"@vue/cli-plugin-unit-mocha": "^3.5.1",
|
|
"@vue/cli-service": "^3.6.0",
|
|
"@vue/eslint-config-standard": "^4.0.0",
|
|
"@vue/test-utils": "^1.0.0-beta.29",
|
|
"babel-eslint": "^10.0.1",
|
|
"chai": "^4.2.0",
|
|
"chai-as-promised": "^7.1.1",
|
|
"cross-env": "^5.2.0",
|
|
"electron": "^4.1.4",
|
|
"electron-builder": "^20.40.2",
|
|
"eslint": "^5.16.0",
|
|
"eslint-plugin-vue": "^5.2.2",
|
|
"lint-staged": "^8.1.5",
|
|
"pug": "^2.0.3",
|
|
"pug-plain-loader": "^1.0.0",
|
|
"stylus": "^0.54.5",
|
|
"stylus-loader": "^3.0.2",
|
|
"vue-cli-plugin-electron-builder": "^1.2.0",
|
|
"vue-template-compiler": "^2.6.10"
|
|
},
|
|
"gitHooks": {
|
|
"pre-commit": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"vue-cli-service lint",
|
|
"git add"
|
|
],
|
|
"*.vue": [
|
|
"vue-cli-service lint",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|