forked from sl5net/0ad-TTS-speaking-population
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.16 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
{
"name": "boongui",
"version": "1.0.0",
"description": "---",
"private": true,
"devDependencies": {
"@prettier/plugin-xml": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-plugin-brace-rules": "^0.1.6",
"lint-staged": "^13.0.0",
"prettier": "^2.7.1",
"simple-git-hooks": "^2.7.0",
"typescript": "^4.6.4"
},
"scripts": {
"postinstall": "vale sync",
"xmlStyle": "find . -name '*.xml' -print0 | while IFS= read -r -d '' file; do xsltproc -o $file ./.github/build_scripts/*.xsl $file; done && ./node_modules/.bin/prettier --write ./\\*\\*/\\*.xml"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged && if type vale >/dev/null; then vale .; fi"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"./**/*.xml": "./node_modules/.bin/prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LangLangBart/boonGUI.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LangLangBart/boonGUI/issues"
},
"homepage": "https://github.com/LangLangBart/boonGUI#readme"
}