forked from ModDota/dota-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.06 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@moddota/dota-data",
"version": "0.39.0",
"description": "Auto-generated Dota 2 resource dumps",
"repository": "https://github.com/ModDota/dota-data",
"license": "Apache-2.0",
"author": "ark120202",
"files": [
"lib/**/*.{js,ts}",
"files/**/*.{json,ts}"
],
"scripts": {
"build": "run-s build:clean build:static build:tsc",
"build:clean": "rimraf \"{files,lib}/**/*\"",
"build:static": "tsx build",
"build:tsc": "tsc -p src",
"dev": "run-p dev:static dev:tsc",
"dev:static": "nodemon",
"dev:tsc": "tsc --watch --preserveWatchOutput",
"lint": "run-p lint:*",
"lint:eslint": "eslint",
"lint:prettier": "prettier --check .",
"fix:prettier": "prettier --write .",
"prepublishOnly": "npm run build:tsc",
"test": "jest",
"auto-dump": "tsx dumper/start-dumper.mts"
},
"prettier": {
"printWidth": 100,
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/test/tsconfig.json"
}
},
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.[jt]s?(x)",
"!**/_*"
]
},
"dependencies": {
"fs-extra": "^9.0.1",
"got": "^11.6.0",
"lodash": "^4.17.20",
"tslib": "^2.0.1",
"vdf-extra": "^2.2.2"
},
"devDependencies": {
"@ark120202/typescript-config": "^2.2.0",
"@moddota/find-steam-app": "^1.1.0",
"@types/dedent": "^0.7.0",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.13",
"@types/lodash": "^4.14.161",
"@types/prettier": "2.2.3",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"dedent": "^0.7.0",
"eslint": "^7.32.0",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"prettier": "2.3.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"tsx": "^3.12.4",
"typescript": "^4.0.2",
"valve-kv": "^1.2.1",
"vpk": "^0.2.0"
},
"engines": {
"node": ">=12.13.0"
}
}