Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
m1k1o
GitHub Repository: m1k1o/neko
Path: blob/master/client/package.json
1002 views
1
{
2
"name": "neko-client",
3
"version": "2.5.0",
4
"description": "Client for neko streaming server",
5
"license": "Apache License 2.0",
6
"author": "Nurdism <https://github.com/nurdism>",
7
"homepage": "https://github.com/m1k1o/neko/client#readme",
8
"repository": {
9
"type": "git",
10
"url": "git+https://github.com/m1k1o/neko.git"
11
},
12
"bugs": {
13
"url": "https://github.com/m1k1o/neko/issues"
14
},
15
"scripts": {
16
"serve": "vue-cli-service serve --mode development",
17
"build": "vue-cli-service build",
18
"build:lib": "vue-cli-service build --target lib --name neko-lib 'src/lib.ts'",
19
"build:emoji": "ts-node --files --project tools/tsconfig.json tools/emoji.ts",
20
"lint": "vue-cli-service lint"
21
},
22
"dependencies": {
23
"@fortawesome/fontawesome-free": "^6.2.0",
24
"animejs": "^3.2.0",
25
"axios": "^1.2.3",
26
"date-fns": "^2.29.3",
27
"emoji-datasource": "^6.0.1",
28
"eventemitter3": "^4.0.7",
29
"resize-observer-polyfill": "^1.5.1",
30
"simple-markdown": "^0.7.2",
31
"sweetalert2": "11.4.8",
32
"typed-vuex": "^0.1.21",
33
"v-tooltip": "^2.0.3",
34
"vue": "^2.7.13",
35
"vue-class-component": "^7.2.6",
36
"vue-clickaway": "^2.2.2",
37
"vue-context": "^5.2.0",
38
"vue-i18n": "^8.27.2",
39
"vue-notification": "^1.3.20",
40
"vue-property-decorator": "^9.1.2",
41
"vuex": "^3.5.1"
42
},
43
"devDependencies": {
44
"@types/animejs": "^3.1.6",
45
"@types/node": "^18.11.18",
46
"@types/vue": "^2.0.0",
47
"@types/vue-clickaway": "^2.2.0",
48
"@typescript-eslint/eslint-plugin": "^5.0.8",
49
"@typescript-eslint/parser": "^5.0.8",
50
"@vue/cli-plugin-babel": "^5.0.8",
51
"@vue/cli-plugin-eslint": "^5.0.8",
52
"@vue/cli-plugin-typescript": "^5.0.8",
53
"@vue/cli-plugin-vuex": "^5.0.8",
54
"@vue/cli-service": "^5.0.8",
55
"@vue/eslint-config-prettier": "^6.0.0",
56
"@vue/eslint-config-typescript": "^11.0.2",
57
"core-js": "^3.26.0",
58
"emojilib": "^3.0.7",
59
"eslint": "^8.32.0",
60
"eslint-plugin-prettier": "^3.4.1",
61
"eslint-plugin-vue": "^9.0.0",
62
"prettier": "^2.7.1",
63
"sass": "^1.55.0",
64
"sass-loader": "^10.3.1",
65
"ts-node": "^9.1.1",
66
"typescript": "^4.8.4",
67
"vue-template-compiler": "^2.7.13"
68
}
69
}
70
71