Files
wow-eluna-ts-module/package.json
2023-09-10 02:58:04 -04:00

44 lines
985 B
JSON

{
"name": "wow-eluna-ts-module",
"version": "1.0.3",
"description": "Stripped down base repo for enabling custom WoW Eluna development using TypeScript",
"contributors": [
"ben-of-codecraft",
"Yehonal"
],
"license": "AGPL-3.0-or-later",
"files": [
"types",
".bin",
"tsconfig.build.json",
"common/**/*",
"ets.env"
],
"types": "types/index.d.ts",
"bin": {
"ets": ".bin/ets.js"
},
"scripts": {
"build": "tstl -p tsconfig.build.json",
"test": "npx jest"
},
"main": "index.ts",
"devDependencies": {
"@golevelup/ts-jest": "^0.3.1",
"@types/jest": "^29.5.4",
"jest": "^29.6.4",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@typescript-to-lua/language-extensions": "^1.19.0",
"commander": "^7.2.0",
"dotenv": "^9.0.2",
"fs-extra": "^11.1.1",
"lodash": "^4.17.21",
"lua-types": "^2.10.1",
"typescript-to-lua": "^1.19.0"
}
}