forked from thelounge/thelounge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 4.16 KB
/
Copy pathpackage.json
File metadata and controls
144 lines (144 loc) · 4.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "thelounge",
"description": "The self-hosted Web IRC client",
"version": "4.5.1",
"type": "commonjs",
"preferGlobal": true,
"bin": {
"thelounge": "index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thelounge/thelounge.git"
},
"homepage": "https://thelounge.chat/",
"scripts": {
"build:client": "vite build",
"build:server": "tsc -p server/tsconfig.json",
"build": "run-p --aggregate-output build:client build:server",
"coverage": "vitest run --coverage",
"dev": "cross-env NODE_ENV=development ts-node --project server/tsconfig.json server/index.ts start --dev",
"format:prettier": "prettier --write \"**/*.*\"",
"generate:config:doc": "ts-node scripts/generate-config-doc.js",
"lint:check-eslint": "eslint-config-prettier .eslintrc.cjs",
"lint:eslint": "eslint . --report-unused-disable-directives --color",
"lint:prettier": "prettier --list-different \"**/*.*\"",
"lint:stylelint": "stylelint --color \"client/**/*.css\"",
"lint": "run-p --aggregate-output --continue-on-error lint:*",
"start": "node index start",
"test": "run-p --aggregate-output --continue-on-error lint:* test:vitest",
"test:vitest": "vitest run",
"watch": "vite build --watch",
"githooks-install": "git config core.hooksPath scripts/git-hooks"
},
"keywords": [
"lounge",
"browser",
"web",
"chat",
"client",
"irc",
"server",
"thelounge"
],
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"files": [
"./.thelounge_home",
"./index.js",
"./yarn.lock",
"./dist/package.json",
"./dist/**/*.js",
"./public/**"
],
"dependencies": {
"@fastify/busboy": "1.0.0",
"bcryptjs": "2.4.3",
"chalk": "4.1.2",
"cheerio": "1.0.0",
"commander": "9.0.0",
"content-disposition": "0.5.4",
"express": "4.20.0",
"file-type": "16.5.4",
"filenamify": "4.3.0",
"got": "11.8.6",
"irc-framework": "github:kiwiirc/irc-framework#9578e59",
"ldapjs": "2.3.3",
"linkify-it": "3.0.3",
"lodash": "4.17.21",
"mime-types": "2.1.35",
"node-forge": "1.3.1",
"package-json": "7.0.0",
"read": "1.0.7",
"semver": "7.5.2",
"socket.io": "4.6.2",
"tlds": "1.228.0",
"ua-parser-js": "1.0.39",
"web-push": "3.4.5",
"yarn": "1.22.22"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "5.15.4",
"@textcomplete/core": "0.1.10",
"@textcomplete/textarea": "0.1.10",
"@types/bcryptjs": "2.4.6",
"@types/cheerio": "0.22.35",
"@types/content-disposition": "0.5.8",
"@types/express": "4.17.21",
"@types/ldapjs": "2.2.5",
"@types/linkify-it": "3.0.5",
"@types/lodash": "4.14.202",
"@types/mime-types": "2.1.4",
"@types/mousetrap": "1.6.15",
"@types/node": "22.19.17",
"@types/read": "0.0.32",
"@types/semver": "7.3.9",
"@types/sortablejs": "1.15.8",
"@types/ua-parser-js": "0.7.39",
"@types/web-push": "3.3.2",
"@types/ws": "8.5.12",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"@vitejs/plugin-vue": "6.0.5",
"@vitest/coverage-istanbul": "4.1.4",
"@vue/runtime-dom": "3.2.33",
"@vue/test-utils": "2.4.6",
"cross-env": "7.0.3",
"cssnano": "5.0.17",
"dayjs": "1.10.8",
"emoji-regex": "10.2.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-define-config": "2.1.0",
"eslint-plugin-vue": "9.25.0",
"fuzzy": "0.1.3",
"jsdom": "29.0.2",
"mousetrap": "1.6.5",
"normalize.css": "8.0.1",
"npm-run-all2": "5.0.0",
"postcss": "8.5.10",
"postcss-import": "14.0.2",
"postcss-preset-env": "7.3.0",
"prettier": "2.5.1",
"pretty-quick": "3.1.3",
"primer-tooltips": "2.0.0",
"sinon": "13.0.2",
"socket.io-client": "4.5.0",
"sortablejs": "1.15.2",
"stylelint": "14.3.0",
"stylelint-config-standard": "24.0.0",
"ts-node": "10.7.0",
"ts-sinon": "2.0.2",
"tsx": "4.21.0",
"typescript": "5.4.5",
"undate": "0.3.0",
"vite": "8.0.16",
"vitest": "4.1.4",
"vue": "3.2.35",
"vue-eslint-parser": "9.4.3",
"vue-router": "4.0.15",
"vuex": "4.0.2"
}
}