Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
76 lines (76 loc) · 2.52 KB

File metadata and controls

76 lines (76 loc) · 2.52 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
70
71
72
73
74
75
76
{
"name": "typescript-to-lua",
"version": "1.26.2",
"description": "A generic TypeScript to Lua transpiler. Write your code in TypeScript and publish Lua!",
"repository": "https://github.com/TypeScriptToLua/TypeScriptToLua",
"homepage": "https://typescripttolua.github.io/",
"bugs": {
"url": "https://github.com/TypeScriptToLua/TypeScriptToLua/issues"
},
"license": "MIT",
"keywords": [
"typescript",
"lua",
"tstl",
"transpiler"
],
"files": [
"dist/**/*.js",
"dist/**/*.lua",
"dist/**/*.ts",
"dist/lualib/**/*.json"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && npm run build-lualib",
"build-lualib": "node dist/tstl.js -p src/lualib/tsconfig.json && node dist/tstl.js -p src/lualib/tsconfig.lua50.json",
"pretest": "npm run lint && npm run check:language-extensions && npm run build-lualib",
"test": "jest",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:prettier": "prettier --check . || (echo 'Run `npm run fix:prettier` to fix it.' && exit 1)",
"lint:eslint": "eslint . --ext .js,.ts",
"fix:prettier": "prettier --write .",
"check:language-extensions": "tsc --strict language-extensions/index.d.ts",
"preversion": "npm run build && npm test",
"postversion": "git push && git push --tags"
},
"bin": {
"tstl": "dist/tstl.js"
},
"engines": {
"node": ">=16.10.0"
},
"peerDependencies": {
"typescript": "5.6.2"
},
"dependencies": {
"@typescript-to-lua/language-extensions": "1.19.0",
"enhanced-resolve": "^5.8.2",
"picomatch": "^2.3.1",
"resolve": "^1.15.1",
"source-map": "^0.7.3"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/glob": "^7.1.1",
"@types/jest": "^27.5.2",
"@types/node": "^13.7.7",
"@types/picomatch": "^2.3.0",
"@types/resolve": "1.14.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^26.9.0",
"fs-extra": "^8.1.0",
"javascript-stringify": "^2.0.1",
"jest": "^29.5.0",
"jest-circus": "^29.5.0",
"lua-types": "^2.13.0",
"lua-wasm-bindings": "^0.3.1",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.6.2",
"typescript-eslint": "^7.13.1"
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.