-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.34 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
{
"name": "cs2-inspect-lib",
"version": "4.1.0",
"description": "Enhanced CS2 Inspect URL library with full protobuf support, validation, and error handling",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cs2inspect": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"generate:weapon-paints": "bun run scripts/generate-weapon-paints.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm test",
"dev": "ts-node --files src/cli.ts",
"docs": "typedoc src/index.ts"
},
"keywords": [
"cs2",
"counter-strike",
"inspect",
"url",
"protobuf",
"steam",
"gaming",
"typescript"
],
"author": "sak0a",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sak0a/cs2-inspect-lib.git"
},
"bugs": {
"url": "https://github.com/sak0a/cs2-inspect-lib/issues"
},
"homepage": "https://sak0a.github.io/cs2-inspect-lib/",
"files": [
"dist/**/*",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=22.12.0"
},
"dependencies": {
"commander": "^15.0.0",
"node-cs2": "^2.3.1",
"steam-user": "^5.3.0"
},
"overrides": {
"steam-appticket": "^2.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.5",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"eslint": "^10.7.0",
"jest": "^30.4.2",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typedoc": "^0.28.20",
"typescript": "^6.0.3"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.test.json"
}
]
},
"roots": [
"<rootDir>/src",
"<rootDir>/tests"
],
"testMatch": [
"**/__tests__/**/*.ts",
"**/?(*.)+(spec|test).ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/cli.ts",
"!src/**/*.d.ts"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
]
}
}