-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.18 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
{
"name": "csgo-sharecode",
"version": "4.0.0",
"description": "Encode / decode CS:GO and CS2 share code",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"author": "AkiVer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/akiver/csgo-sharecode.git"
},
"homepage": "https://github.com/akiver/csgo-sharecode",
"keywords": [
"csgo",
"cs2",
"Counter-Strike",
"valve",
"share code",
"replays",
"demos",
"crosshair"
],
"files": [
"dist",
"src/index.ts"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"format": "prettier --write \"**\"",
"t": "npm run test",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"tw": "vitest --watch"
},
"devDependencies": {
"@types/node": "26.0.1",
"prettier": "3.8.4",
"typescript": "6.0.3",
"vitest": "4.1.9"
},
"engines": {
"node": ">=10.8.0"
},
"devEngines": {
"packageManager": {
"name": "npm",
"version": ">=11.0.0",
"onFail": "download"
},
"runtime": {
"name": "node",
"version": ">=24.18.0",
"onFail": "download"
}
}
}