-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.45 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.45 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
{
"name": "@csfloat/cs2-inspect-serializer",
"version": "1.1.6",
"description": "Lightweight serializer for CS2 inspect links",
"homepage": "https://github.com/csfloat/cs-inspect-serializer",
"bugs": {
"url": "https://github.com/csfloat/cs-inspect-serializer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/csfloat/cs-inspect-serializer.git"
},
"license": "MIT",
"author": "CSFloat",
"type": "commonjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "tests"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "jest",
"protoc": "npx protoc --ts_opt=force_optimize_code_size --ts_out src --proto_path protos protos/econ.proto"
},
"module": "dist/index.mjs",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.ts"
]
},
"dependencies": {
"@protobuf-ts/runtime": "2.11.1",
"buffer": "6.0.3",
"crc-32": "1.2.2"
},
"devDependencies": {
"@protobuf-ts/plugin": "2.11.1",
"@types/jest": "30.0.0",
"jest": "30.1.3",
"protoc": "32.1.0",
"ts-jest": "29.4.3",
"tsup": "8.5.0",
"typescript": "5.9.2"
}
}