Archived
2
0
This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
neko-custom/client/package.json

70 lines
2.2 KiB
JSON
Raw Normal View History

2020-01-13 21:05:38 +13:00
{
"name": "neko-client",
2020-04-05 16:10:18 +12:00
"version": "2.0.0",
2020-01-13 21:05:38 +13:00
"description": "Client for neko streaming server",
2020-01-15 09:59:18 +13:00
"license": "Apache License 2.0",
"author": "Nurdism <https://github.com/nurdism>",
"homepage": "https://github.com/nurdism/neko/client#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nurdism/neko.git"
},
"bugs": {
"url": "https://github.com/nurdism/neko/issues"
},
2020-01-13 21:05:38 +13:00
"scripts": {
2020-01-14 22:39:47 +13:00
"serve": "vue-cli-service serve --mode development",
2020-01-13 21:05:38 +13:00
"build": "vue-cli-service build",
2021-03-10 06:07:35 +13:00
"build:lib": "vue-cli-service build --target lib --name neko-lib 'src/lib.ts'",
2020-02-02 09:35:48 +13:00
"build:emoji": "ts-node --files --project tools/tsconfig.json tools/emoji.ts",
2021-03-10 06:07:35 +13:00
"lint": "vue-cli-service lint"
2020-01-13 21:05:38 +13:00
},
"dependencies": {
2020-09-27 12:14:21 +13:00
"@fortawesome/fontawesome-free": "^5.14.0",
"animejs": "^3.2.0",
2021-03-29 08:44:43 +13:00
"axios": "^0.21.1",
2020-09-27 12:14:21 +13:00
"date-fns": "^2.16.1",
2021-03-29 08:44:43 +13:00
"emoji-datasource": "^6.0.1",
2020-09-27 12:14:21 +13:00
"eventemitter3": "^4.0.7",
2020-01-23 06:16:40 +13:00
"resize-observer-polyfill": "^1.5.1",
"simple-markdown": "^0.7.2",
2021-03-29 08:44:43 +13:00
"sweetalert2": "^10.15.7",
2020-09-27 12:14:21 +13:00
"typed-vuex": "^0.1.21",
2020-01-23 06:16:40 +13:00
"v-tooltip": "^2.0.3",
2020-09-27 12:14:21 +13:00
"vue": "^2.6.12",
"vue-class-component": "^7.2.6",
2020-02-02 10:27:41 +13:00
"vue-clickaway": "^2.2.2",
2020-09-27 12:14:21 +13:00
"vue-context": "^5.2.0",
"vue-i18n": "^8.21.1",
2020-01-13 21:05:38 +13:00
"vue-notification": "^1.3.20",
2021-03-29 08:44:43 +13:00
"vue-property-decorator": "^9.1.2",
2020-09-27 12:14:21 +13:00
"vuex": "^3.5.1"
2020-01-13 21:05:38 +13:00
},
"devDependencies": {
2020-09-27 12:14:21 +13:00
"@types/animejs": "^3.1.2",
2021-03-29 08:44:43 +13:00
"@types/node": "^14.14.37",
2020-01-23 06:16:40 +13:00
"@types/vue": "^2.0.0",
2020-02-02 10:27:41 +13:00
"@types/vue-clickaway": "^2.2.0",
2021-03-29 08:44:43 +13:00
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
2020-09-27 12:14:21 +13:00
"@vue/cli-plugin-babel": "^4.5.6",
"@vue/cli-plugin-eslint": "^4.5.6",
"@vue/cli-plugin-typescript": "^4.5.6",
"@vue/cli-plugin-vuex": "^4.5.6",
2021-03-29 08:44:43 +13:00
"@vue/cli-service": "^4.5.12",
2020-04-05 15:16:52 +12:00
"@vue/eslint-config-prettier": "^6.0.0",
2021-03-29 08:44:43 +13:00
"@vue/eslint-config-typescript": "^7.0.0",
"core-js": "^3.9.1",
"emojilib": "^2.4.0",
2020-04-05 15:16:52 +12:00
"eslint": "^6.8.0",
2020-09-27 12:14:21 +13:00
"eslint-plugin-prettier": "^3.1.4",
2021-03-29 08:44:43 +13:00
"eslint-plugin-vue": "^7.8.0",
"node-sass": "^5.0.0",
2020-09-27 12:14:21 +13:00
"prettier": "^2.1.2",
2021-03-29 08:44:43 +13:00
"sass-loader": "^10.1.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
2020-09-27 12:14:21 +13:00
"vue-template-compiler": "^2.6.12"
2020-01-13 21:05:38 +13:00
}
}