Converted the javascript to typescript for help with the developing, ty to the [foundry-vtt-types](https://github.com/League-of-Foundry-Developers/foundry-vtt-types) project.

This commit is contained in:
Marco Tenti
2021-04-08 16:51:51 +02:00
parent 2eca460637
commit 3b7b0e5a39
22 changed files with 8113 additions and 1 deletions

43
package.json Normal file
View File

@@ -0,0 +1,43 @@
{
"private": true,
"name": "smart-doors",
"version": "1.2.5",
"description": "Makes doors smarter. Allows doors to synchronize across multiple scenes and sends chat messages when players try to open locked doors.",
"repository": {
"type": "git",
"url": "git@github-manuelVo:manuelVo/foundryvtt-smart-doors.git"
},
"author": "manuelVo",
"license": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"package": "gulp package",
"build": "gulp build && gulp link",
"build:watch": "gulp watch",
"clean": "gulp clean && gulp link --clean",
"update": "npm install --save-dev @league-of-foundry-developers/foundry-vtt-types@fvtt-0.7.9"
},
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "^0.7.9-6",
"archiver": "^5.2.0",
"chalk": "^4.1.0",
"fs-extra": "^9.0.1",
"gulp": "^4.0.2",
"gulp-git": "^2.10.1",
"gulp-less": "^4.0.1",
"gulp-sass": "^4.1.0",
"gulp-typescript": "^6.0.0-alpha.1",
"json-stringify-pretty-compact": "^2.0.0",
"sass": "^1.26.10",
"typescript": "^4.2.4",
"yargs": "^15.4.1"
},
"dependencies": {
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0"
}
}