{
  "name": "@kronbergerspiele/ts2gd",
  "version": "0.1.3",
  "description": "TypeScript to GDScript transpiler.",
  "main": "js/main.js",
  "scripts": {
    "publish-local": "npm run tsc && npm link",
    "auto-publish": "npm run tsc && git add . && git commit -m 'include generated JS' && npm version patch && npm publish",
    "tsc": "tsc",
    "dev": "ts-node-dev --respawn main.ts",
    "test": "ts-node-dev --respawn --clear tests/test.ts",
    "build-ci": "tsc",
    "test-ci": "node js/tests/test.js",
    "test-ci-jest": "jest --coverage",
    "project-test": "ts-node-dev --respawn --clear tests/project_tests.ts",
    "prepare": "",
    "lint-staged": "lint-staged",
    "generate-defs": "ts-node main.ts --buildLibraries --buildOnly mockProject/ts2gd.json"
  },
  "prepublish": "tsc",
  "bin": {
    "ts2gd": "bin/index.js"
  },
  "files": [
    "_godot_defs",
    "bin",
    "js",
    "LICENSE"
  ],
  "author": "ksjogo",
  "license": " GPL-3.0-or-later AND MIT",
  "prettier": {
    "trailingComma": "es5",
    "tabWidth": 2,
    "semi": false
  },
  "lint-staged": {
    "*.ts": [
      "eslint --fix",
      "prettier --write"
    ],
    "*.json": [
      "prettier --write"
    ]
  },
  "dependencies": {
    "chalk": "^4.1.2",
    "chokidar": "^3.5.2",
    "is-ci": "^3.0.1",
    "lodash": "^4.17.21",
    "pkginfo": "^0.4.1",
    "tsutils": "^3.21.0",
    "xml2js": "^0.4.23"
  },
  "devDependencies": {
    "@babel/core": "^7.16.5",
    "@babel/preset-env": "^7.16.5",
    "@babel/preset-typescript": "^7.16.5",
    "@types/jest": "^27.0.3",
    "@types/lodash": "^4.14.178",
    "@types/node": "^16.11.9",
    "@types/pkginfo": "^0.4.0",
    "@types/xml2js": "^0.4.9",
    "@typescript-eslint/eslint-plugin": "^5.7.0",
    "@typescript-eslint/parser": "^5.7.0",
    "anymatch": "^3.1.2",
    "babel-jest": "^27.4.5",
    "eslint": "^8.5.0",
    "eslint-plugin-import": "^2.25.3",
    "eslint-plugin-prettier": "^4.0.0",
    "husky": "^7.0.4",
    "jest": "^27.4.5",
    "lint-staged": "^12.1.2",
    "prettier": "^2.5.1",
    "ts-node": "^10.4.0",
    "ts-node-dev": "^1.1.8",
    "typescript": "^4.5.2"
  }
}
