-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "tstl-remove-debug",
"version": "1.1.0",
"description": "TypeScriptToLua plugin that removes debugging expressions",
"repository": {
"type": "git",
"url": "https://github.com/thinknathan/tstl-remove-debug.git"
},
"author": "Nathan Bolton (https://thinknathan.ca/)",
"license": "CC0-1.0",
"main": "dist/tstl-remove-debug.cjs",
"type": "commonjs",
"files": [
"dist/tstl-remove-debug.cjs"
],
"scripts": {
"ci": "tsc --noEmit && npm run lint",
"build": "tsc && npm run renameCjs && prettier \"./dist/*.cjs\" --write",
"renameCjs": "node -e \"require('fs').renameSync('dist/tstl-remove-debug.js', 'dist/tstl-remove-debug.cjs')\"",
"lint": "eslint ./*.ts",
"prettier": "prettier --write ./"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"prettier": "^3.1.0",
"typescript": "5.4.2",
"typescript-eslint": "^7.6.0",
"typescript-to-lua": "~1.25.0"
},
"peerDependencies": {
"typescript-to-lua": ">=1.22.0"
}
}