-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 KB
/
package.json
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
{
"name": "@voicenter-team/socketio-storage-logger",
"version": "1.9.19",
"description": "Logger that allows you to save logged information into your storage and emit stored logs via socket.io",
"main": "dist/storage-logger.cjs.js",
"jsdelivr": "dist/storage-logger.umd.js",
"module": "dist/storage-logger.es.js",
"unpkg": "dist/storage-logger.umd.js",
"types": "dist/storage-logger.d.ts",
"type": "module",
"precommit": "ts-check, lint",
"scripts": {
"build": "vite build",
"ts-check": "tsc --noEmit",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts --fix --ignore-path .gitignore"
},
"author": "Serhii Kundys",
"license": "ISC",
"dependencies": {
"socket.io-client": "4.7.4",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/node": "^17.0.32",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"@voicenter-team/eslint-config-ts": "^1.0.22",
"eslint": "8.56.0",
"typescript": "5.3.3",
"vite": "5.0.12",
"vite-plugin-dts": "3.7.2",
"pre-commit": "^1.2.2"
},
"files": [
"dist/*"
]
}