-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.85 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
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
{
"name": "dotastatscli",
"version": "2.0.1",
"author": "Dmitriy Dzyuman <t.me/dimadzuman>",
"license": "MIT",
"description": "Simple, free and effective CLI application that allows you to receive statistics of your matches in dota and visualize it in a pleasant and understandable way.",
"main": "dist/main.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"devStart": "npm run build && node dist/main.js",
"rmrf": "rm -rf dist",
"prepublishOnly": "npm run rmrf && npm run build",
"prebuild": "node -p \"'export const APP_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/constants/version.ts",
"setVersion": "npm --no-git-tag-version version",
"getPack": "npm run prepublishOnly && npm pack && tar -xzf dotastatscli-*.tgz",
"clean": "npm run rmrf && rm -rf package dotastatscli-*.tgz dotastatscli-*.zip"
},
"engines": {
"node": ">=18.14.0"
},
"bin": {
"dotastatscli": "dist/main.js"
},
"files": [
"dist/**/*",
"src/templates",
"npm-shrinkwrap.json",
"docs"
],
"keywords": [
"dotastatscli",
"cli",
"dota",
"stats",
"statistics",
"visualization",
"shell",
"command line",
"console",
"terminal"
],
"homepage": "https://github.com/ddgryaz/dotaStatsCLI#readme",
"bugs": "https://github.com/ddgryaz/dotaStatsCLI/issues",
"repository": {
"type": "git",
"url": "https://github.com/ddgryaz/dotaStatsCLI"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jsdom": "^21.1.6",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
},
"dependencies": {
"@fastify/static": "^6.12.0",
"fastify": "^4.24.3",
"inquirer": "^9.2.22",
"is-online": "^9.0.1",
"jsdom": "^23.0.1",
"open": "^10.1.0",
"pino": "^9.1.0",
"pino-pretty": "^11.1.0"
}
}