-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "mtasa-lua-types",
"version": "1.1.1",
"description": "TypeScript types definitions for MTASA Lua",
"homepage": "https://github.com/mtasa-typescript/mtasa-lua-types",
"bugs": "https://github.com/mtasa-typescript/mtasa-lua-types/issues",
"scripts": {
"build": "tstl",
"eslint": "eslint --max-warnings=0 .",
"prettier": "prettier --check .",
"prettier-fix": "prettier --write .",
"test": "npm run prettier && npm run eslint"
},
"repository": {
"type": "git",
"url": "https://github.com/mtasa-typescript/mtasa-lua-types.git"
},
"keywords": [
"mtasa",
"types",
"mtasa-lua",
"mtasa-typescript",
"mta",
"intellisense",
"linting",
"typescript"
],
"author": "Anatolii Titov <a@toliak.ru>",
"contributors": [
"Dominic Hock <admin@subtixx.de>"
],
"types": "./index.d.ts",
"license": "MIT",
"files": [
"server/**/*",
"client/**/*",
"shared/**/*",
"index.d.ts"
],
"dependencies": {
"lua-types": "^2.11.0",
"typescript": "^4.4.4",
"typescript-to-lua": "^1.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"prettier": "^2.4.1"
}
}