-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
55 lines (55 loc) · 1.44 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "run-p build:*",
"build:tsc": "tsc -b packages",
"build:types": "ts-node-script build",
"check-generated": "node scripts/check-generated.js",
"dev": "run-p dev:*",
"dev:tsc": "tsc -b packages --watch",
"dev:types": "nodemon",
"lint": "run-s lint:*",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"prepublishOnly": "npm run build",
"test": "tsc -b test",
"bump:lua-types": "ts-node scripts/bump-version.ts packages/dota-lua-types",
"bump:panorama-types": "ts-node scripts/bump-version.ts packages/panorama-types"
},
"prettier": {
"printWidth": 100,
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "all",
"overrides": [
{
"files": "packages/*/types/**/*",
"options": {
"printWidth": 120
}
}
]
},
"devDependencies": {
"@ark120202/eslint-config": "^2.5.0",
"@moddota/dota-data": "^0.43.0",
"@types/fs-extra": "^9.0.4",
"@types/lodash": "^4.14.165",
"@types/node": "^20.14.8",
"@types/prettier": "^2.1.5",
"@types/wordwrap": "^1.0.0",
"dts-dom": "3.6.0",
"eslint": "^7.13.0",
"fs-extra": "^9.0.1",
"lodash": "^4.17.20",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.5.2",
"wordwrap": "^1.0.0"
},
"version": "0.1.0"
}