package.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. {
  2. "name": "typescript",
  3. "author": "Microsoft Corp.",
  4. "homepage": "https://www.typescriptlang.org/",
  5. "version": "6.0.3",
  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. "@dprint/formatter": "^0.4.1",
  43. "@dprint/typescript": "0.93.4",
  44. "@esfx/canceltoken": "^1.0.0",
  45. "@eslint/js": "^10.0.1",
  46. "@octokit/rest": "^22.0.1",
  47. "@types/chai": "^4.3.20",
  48. "@types/minimist": "^1.2.5",
  49. "@types/mocha": "^10.0.10",
  50. "@types/ms": "^2.1.0",
  51. "@types/node": "latest",
  52. "@types/source-map-support": "^0.5.10",
  53. "@types/which": "^3.0.4",
  54. "@typescript-eslint/rule-tester": "^8.56.1",
  55. "@typescript-eslint/type-utils": "^8.56.1",
  56. "@typescript-eslint/utils": "^8.56.1",
  57. "azure-devops-node-api": "^15.1.3",
  58. "c8": "^10.1.3",
  59. "chai": "^4.5.0",
  60. "chokidar": "^4.0.3",
  61. "diff": "^8.0.3",
  62. "dprint": "^0.49.1",
  63. "esbuild": "^0.27.3",
  64. "eslint": "^10.0.2",
  65. "eslint-plugin-regexp": "^3.0.0",
  66. "fast-xml-parser": "^5.4.1",
  67. "glob": "^10.5.0",
  68. "globals": "^17.4.0",
  69. "hereby": "^1.12.0",
  70. "jsonc-parser": "^3.3.1",
  71. "knip": "^5.85.0",
  72. "minimist": "^1.2.8",
  73. "mocha": "^10.8.2",
  74. "mocha-fivemat-progress-reporter": "^0.1.0",
  75. "monocart-coverage-reports": "^2.12.9",
  76. "ms": "^2.1.3",
  77. "picocolors": "^1.1.1",
  78. "playwright": "^1.58.2",
  79. "source-map-support": "^0.5.21",
  80. "tslib": "^2.8.1",
  81. "typescript": "^5.9.3",
  82. "typescript-eslint": "^8.56.1",
  83. "which": "^3.0.1"
  84. },
  85. "overrides": {
  86. "typescript@*": "$typescript"
  87. },
  88. "scripts": {
  89. "test": "hereby runtests-parallel --light=false",
  90. "test:eslint-rules": "hereby run-eslint-rules-tests",
  91. "build": "npm run build:compiler && npm run build:tests",
  92. "build:compiler": "hereby local",
  93. "build:tests": "hereby tests",
  94. "build:tests:notypecheck": "hereby tests --no-typecheck",
  95. "clean": "hereby clean",
  96. "gulp": "hereby",
  97. "lint": "hereby lint",
  98. "knip": "hereby knip",
  99. "format": "dprint fmt",
  100. "setup-hooks": "node scripts/link-hooks.mjs"
  101. },
  102. "browser": {
  103. "fs": false,
  104. "os": false,
  105. "path": false,
  106. "crypto": false,
  107. "buffer": false,
  108. "source-map-support": false,
  109. "inspector": false,
  110. "perf_hooks": false
  111. },
  112. "packageManager": "npm@8.19.4",
  113. "volta": {
  114. "node": "22.22.0",
  115. "npm": "8.19.4"
  116. },
  117. "gitHead": "050880ce59e30b356b686bd3144efe24f875ebc8"
  118. }