package.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. {
  2. "name": "typescript",
  3. "author": "Microsoft Corp.",
  4. "homepage": "https://www.typescriptlang.org/",
  5. "version": "5.4.5",
  6. "license": "Apache-2.0",
  7. "description": "TypeScript is a language for application scale JavaScript development",
  8. "keywords": [
  9. "TypeScript",
  10. "Microsoft",
  11. "compiler",
  12. "language",
  13. "javascript"
  14. ],
  15. "bugs": {
  16. "url": "https://github.com/Microsoft/TypeScript/issues"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/Microsoft/TypeScript.git"
  21. },
  22. "main": "./lib/typescript.js",
  23. "typings": "./lib/typescript.d.ts",
  24. "bin": {
  25. "tsc": "./bin/tsc",
  26. "tsserver": "./bin/tsserver"
  27. },
  28. "engines": {
  29. "node": ">=14.17"
  30. },
  31. "files": [
  32. "bin",
  33. "lib",
  34. "!lib/enu",
  35. "LICENSE.txt",
  36. "README.md",
  37. "SECURITY.md",
  38. "ThirdPartyNoticeText.txt",
  39. "!**/.gitattributes"
  40. ],
  41. "devDependencies": {
  42. "@esfx/canceltoken": "^1.0.0",
  43. "@octokit/rest": "^20.0.2",
  44. "@types/chai": "^4.3.11",
  45. "@types/glob": "^8.1.0",
  46. "@types/microsoft__typescript-etw": "^0.1.3",
  47. "@types/minimist": "^1.2.5",
  48. "@types/mocha": "^10.0.6",
  49. "@types/ms": "^0.7.34",
  50. "@types/node": "latest",
  51. "@types/source-map-support": "^0.5.10",
  52. "@types/which": "^3.0.3",
  53. "@typescript-eslint/eslint-plugin": "^6.19.0",
  54. "@typescript-eslint/parser": "^6.19.0",
  55. "@typescript-eslint/utils": "^6.19.0",
  56. "azure-devops-node-api": "^12.3.0",
  57. "c8": "^9.1.0",
  58. "chai": "^4.4.1",
  59. "chalk": "^4.1.2",
  60. "chokidar": "^3.5.3",
  61. "diff": "^5.1.0",
  62. "dprint": "^0.45.0",
  63. "esbuild": "^0.20.0",
  64. "eslint": "^8.56.0",
  65. "eslint-formatter-autolinkable-stylish": "^1.3.0",
  66. "eslint-plugin-local": "^3.1.0",
  67. "eslint-plugin-no-null": "^1.0.2",
  68. "eslint-plugin-simple-import-sort": "^10.0.0",
  69. "fast-xml-parser": "^4.3.3",
  70. "glob": "^10.3.10",
  71. "hereby": "^1.8.9",
  72. "jsonc-parser": "^3.2.0",
  73. "minimist": "^1.2.8",
  74. "mocha": "^10.2.0",
  75. "mocha-fivemat-progress-reporter": "^0.1.0",
  76. "ms": "^2.1.3",
  77. "node-fetch": "^3.3.2",
  78. "playwright": "^1.41.0",
  79. "source-map-support": "^0.5.21",
  80. "tslib": "^2.6.2",
  81. "typescript": "5.4.0-dev.20240119",
  82. "which": "^3.0.1"
  83. },
  84. "overrides": {
  85. "typescript@*": "$typescript"
  86. },
  87. "scripts": {
  88. "test": "hereby runtests-parallel --light=false",
  89. "test:eslint-rules": "hereby run-eslint-rules-tests",
  90. "build": "npm run build:compiler && npm run build:tests",
  91. "build:compiler": "hereby local",
  92. "build:tests": "hereby tests",
  93. "build:tests:notypecheck": "hereby tests --no-typecheck",
  94. "clean": "hereby clean",
  95. "gulp": "hereby",
  96. "lint": "hereby lint",
  97. "format": "dprint fmt",
  98. "setup-hooks": "node scripts/link-hooks.mjs"
  99. },
  100. "browser": {
  101. "fs": false,
  102. "os": false,
  103. "path": false,
  104. "crypto": false,
  105. "buffer": false,
  106. "@microsoft/typescript-etw": false,
  107. "source-map-support": false,
  108. "inspector": false,
  109. "perf_hooks": false
  110. },
  111. "packageManager": "npm@8.19.4",
  112. "volta": {
  113. "node": "20.1.0",
  114. "npm": "8.19.4"
  115. }
  116. }