-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 2.11 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
{
"name": "mtasa-lua-utils",
"version": "1.0.4",
"description": "Prepares Typescript files for Lua compilation for MTASA",
"author": "Anatolii Titov <a@toliak.ru>",
"keywords": [
"mtasa",
"transformer",
"mtasa-typescript",
"lua",
"linting",
"typescript"
],
"license": "MIT",
"homepage": "https://github.com/mtasa-typescript/mtasa-lua-utils",
"bugs": "https://github.com/mtasa-typescript/mtasa-lua-utils/issues",
"repository": {
"type": "git",
"url": "https://github.com/mtasa-typescript/mtasa-lua-utils.git"
},
"type": "commonjs",
"scripts": {
"prebuild": "npm run convert-schema",
"build": "tsc --build",
"watch": "tsc --build --watch",
"prettier": "prettier --check .",
"prettier-fix": "prettier --write .",
"eslint": "eslint --max-warnings=0 .",
"test": "jest .",
"test-create": "node utils/create-test.js",
"convert-schema": "node utils/convert-schema.js && prettier --write src/compiler/meta/types.ts"
},
"bin": {
"mtasa-lua-utils": "./dist/cli.js"
},
"files": [
"dist/**/*",
"*.schema.json",
"src/compiler/empty.ts"
],
"devDependencies": {
"@types/concat-stream": "^1.6.1",
"@types/jest": "^27.0.3",
"@types/js-yaml": "^4.0.5",
"@types/mv": "^2.1.2",
"@types/node": "^17.0.8",
"@types/unzipper": "^0.10.4",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"concat-stream": "^2.0.0",
"eslint": "^8.5.0",
"jest": "^27.4.5",
"json-schema-to-typescript": "^10.1.5",
"mtasa-lua-types": "^1.1.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "~4.5.2"
},
"dependencies": {
"enquirer": "^2.3.6",
"js-yaml": "^4.1.0",
"json5": "^2.2.0",
"jsonschema": "^1.4.0",
"typescript-to-lua": "^1.0.1",
"unzipper": "^0.10.11",
"xml-js": "^1.6.11"
}
}