-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "lua-to-typescript",
"version": "0.3.1",
"description": "Transforms Lua to TypeScript code.",
"keywords": [
"lua",
"typescript",
"transpiler"
],
"repository": "hazzard993/LuaToTypeScript",
"bugs": "https://github.com/hazzard993/LuaToTypeScript/issues",
"homepage": "https://github.com/hazzard993/LuaToTypeScript#readme",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist/**/*.js",
"dist/*.js"
],
"bin": {
"ltts": "dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"fix:prettier": "prettier --check --write \"**/*.{js,ts,yml,json,md}\"",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"dependencies": {
"commander": "^12.1.0",
"fast-glob": "^3.3.2",
"luaparse": "^0.3.1",
"source-map": "^0.7.3"
}
}