-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "renaissance",
"type": "module",
"description": "Реализация эмулятора сервера протокола MRIM.",
"author": {
"name": "mikhail",
"email": "mikhail@autism.net.ru",
"url": "https://synzr.space"
},
"keywords": [],
"main": "dist/renaissance.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "dotenv tsx src/renaissance.ts",
"start:dev": "dotenv tsx watch src/renaissance.ts",
"start:prod": "dotenv node dist/renaissance.js",
"lint": "eslint --fix .",
"build": "tsc"
},
"dependencies": {
"dotenv-cli": "^8.0.0",
"mysql2": "^3.12.0",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"windows-1251": "^3.0.4",
"yaml": "^2.7.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.4.0",
"@eslint/js": "^9.16.0",
"@types/node": "^22.10.2",
"@types/windows-1251": "^0.1.22",
"eslint": "^9.21.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"pnpm": {
"ignoredBuiltDependencies": [
"esbuild"
],
"onlyBuiltDependencies": [
"esbuild"
]
}
}