-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 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
39
40
41
42
43
{
"name": "tsd-boom-template",
"version": "1.0.6",
"description": "Defold game template with TypeScriptToLua and Boom",
"repository": "github:thinknathan/tsd-template-boom",
"keywords": [
"typescript",
"lua",
"defold"
],
"author": "Nathan Bolton (https://thinknathan.ca)",
"license": "MIT",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"type": "module",
"scripts": {
"build": "tstl",
"buildO1": "tstl -p tsconfig.production.json",
"dev": "tstl --watch",
"lint": "eslint src",
"lintfix": "eslint src --fix",
"prettier": "prettier \"./**/*.{yml,json,ts,md,d.ts}\" --write",
"resolve": "library resolve"
},
"devDependencies": {
"@ts-defold/library": "~0.1.2",
"@ts-defold/tstl-userdata-sugar": "^1.0.0",
"@ts-defold/types": "git+https://[email protected]/thinknathan/ts-defold-types.git#>=1.6.4",
"eslint": "^9.0.0",
"prettier": "^3.1.0",
"tstl-const-propagation": "^2.0.4",
"tstl-export-to-global": "^1.0.1",
"tstl-trim-extensions": "^1.0.3",
"typescript": "5.7.2",
"typescript-eslint": "^8.0.0",
"typescript-to-lua": "~1.29.0",
"typescript-tstl-plugin": "~0.3.2"
},
"resolutions": {
"typescript-to-lua": "~1.29.0"
}
}