KawAnime/package.json

115 lines
3.7 KiB
JSON

{
"name": "KawAnime",
"version": "0.5.0",
"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",
"build:bindings": "cmake-js build -d bindings -O bindings/build",
"collect:dylibs": "./scripts/externals/libs/collect-dylib-deps.sh",
"pack": "npm run build -- --dir",
"dist": "npm run dist:mac && npm run dist:win && npm run dist:linux",
"dist:mac": "cross-env NODE_ENV=production npm run build -- --mac -p never",
"dist:win": "cross-env NODE_ENV=production npm run build -- --win --x64 -p never",
"dist:portable": "cross-env NODE_ENV=production npm run build -- --win portable -p never",
"dist:linux": "cross-env NODE_ENV=production npm run build -- --linux -p never",
"publish:mac": "npm run build -- --mac -p always",
"publish:win": "npm run build -- --win --x64 -p always",
"publish:portable": "npm run build -- --win portable -p always",
"lint": "vue-cli-service lint",
"lint:cpp": "cpplint $(git ls-files | grep -E '\\.(cc|h)$')",
"compile:bindings": "cmake-js compile -d bindings -O bindings/build",
"postinstall": "npm run compile:bindings && node scripts/postinstall && electron-builder install-app-deps",
"test": "cross-env IS_TEST=true mocha --reporter mochawesome"
},
"dependencies": {
"buttercup": "^2.16.1",
"chalk": "^4.1.0",
"electron-updater": "^4.3.4",
"graphql": "^15.3.0",
"graphql-request": "^3.1.0",
"lodash": "^4.17.21",
"mal-scraper": "^2.11.3",
"mime": "^2.4.6",
"moment": "^2.27.0",
"node-addon-api": "^1.7.2",
"nyaapi": "^2.4.3",
"pump": "^3.0.0",
"range-parser": "^1.2.1",
"rimraf": "^3.0.2",
"sanitize-html": "^1.27.4",
"torrent-stream": "^1.2.0",
"vue": "^2.6.14",
"vue-router": "^3.4.3",
"vuetify": "2.3.10",
"vuex": "^3.5.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.4",
"@vue/cli-plugin-eslint": "^4.5.4",
"@vue/cli-plugin-pwa": "^4.5.4",
"@vue/cli-plugin-unit-mocha": "^4.5.4",
"@vue/cli-service": "^4.5.4",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "^1.0.5",
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cmake-js": "^6.1.0",
"cross-env": "^7.0.2",
"electron": "^4.2.12",
"electron-builder": "^20.44.4",
"eslint": "^7.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^10.2.13",
"material-design-icons-iconfont": "^6.0.1",
"mocha": "^8.1.3",
"mochawesome": "^6.1.1",
"native-ext-loader": "^2.3.0",
"pug": "^3.0.2",
"pug-plain-loader": "^1.0.0",
"roboto-fontface": "^0.10.0",
"sass": "^1.26.10",
"sass-loader": "^10.0.1",
"spectron": "^6.0.0",
"stylus": "^0.54.8",
"stylus-loader": "^3.0.2",
"targz": "^1.0.1",
"vue-cli-plugin-electron-builder": "^1.4.6",
"vue-cli-plugin-vuetify": "^2.0.7",
"vue-template-compiler": "^2.6.14",
"vuetify-loader": "^1.6.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"cmake-js": {
"runtime": "electron",
"runtimeVersion": "4.2.5",
"arch": "x64"
}
}