-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "@ts-defold/type-gen",
"version": "0.5.6",
"description": "Typescript type generator for Defold",
"repository": "github:ts-defold/type-gen",
"bugs": {
"url": "https://github.com/ts-defold/type-gen/issues"
},
"keywords": [
"typescript",
"lua",
"defold"
],
"author": "Justin Walsh (@thejustinwalsh)",
"homepage": "https://github.com/ts-defold/type-gen#readme",
"license": "MIT",
"main": "lib/index.js",
"bin": "bin/type-gen.js",
"files": [
"lib/**/*.{js,d.ts}",
"bin/**/*.js"
],
"scripts": {
"prepublishOnly": "npm run lint && npm run build",
"build": "npm run compile && npm run generate-types",
"compile": "tsc",
"generate-types": "node lib/index.js",
"lint": "eslint --fix --ext .js,.ts .",
"env": "node -e 'console.log(process.env)'"
},
"dependencies": {
"adm-zip": "^0.5.5",
"node-fetch": "^2.6.1",
"semver": "^7.3.2",
"yaml": "^1.10.2",
"yargs": "^16.1.0"
},
"devDependencies": {
"@types/adm-zip": "^0.4.34",
"@types/jest": "^26.0.14",
"@types/node": "^13.7.7",
"@types/node-fetch": "^2.5.12",
"@types/yargs": "^15.0.9",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.5.3",
"lua-types": "2.8.0",
"prettier": "^2.3.2",
"ts-jest": "^26.4.1",
"typescript": "4.3.4",
"typescript-to-lua": "^1.0.1"
},
"peerDependencies": {
"typescript-to-lua": "^1.0.1"
}
}