-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "gmod-types",
"version": "0.4.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc -p generator/tsconfig.json",
"generate": "node dist/index.js",
"test": "tsc -p .",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"preversion": "npm run build && npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lolleko/gmod-typescript.git"
},
"author": "",
"files": [
"index.d.ts",
"types/**/*.d.ts"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lolleko/gmod-typescript/issues"
},
"homepage": "https://github.com/lolleko/gmod-typescript#readme",
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"proseWrap": "never",
"singleQuote": true
},
"devDependencies": {
"@types/node": "^14.14.20",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"dependencies": {
"fast-xml-parser": "^3.17.6",
"typescript-to-lua": "^0.39.1"
}
}