版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

70 строки
1.9 KiB

  1. {
  2. "name": "@yankeeinlondon/happy-wrapper",
  3. "version": "2.10.1",
  4. "description": "A functional API surface wrapping happy-dom",
  5. "keywords": [
  6. "dom",
  7. "happy-dom"
  8. ],
  9. "homepage": "https://github.com/yankeeinlondon/happy-wrapper#readme",
  10. "bugs": {
  11. "url": "https://github.com/yankeeinlondon/happy-wrapper/issues"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/yankeeinlondon/happy-wrapper.git"
  16. },
  17. "license": "MIT",
  18. "author": "Ken Snyder <ken@ken.net>",
  19. "type": "module",
  20. "exports": {
  21. ".": {
  22. "types": "./dist/index.d.ts",
  23. "import": "./dist/index.js"
  24. }
  25. },
  26. "module": "dist/index.js",
  27. "types": "dist/index.d.ts",
  28. "files": [
  29. "dist"
  30. ],
  31. "scripts": {
  32. "audit:fix": "pnpm audit --fix",
  33. "build": "tsup src/index.ts --format esm --dts --sourcemap external --clean",
  34. "watch": "tsup src/index.ts --format esm --dts --sourcemap external --watch",
  35. "test": "vitest",
  36. "test:ui": "vitest --ui",
  37. "prepublishOnly": "npm run build",
  38. "release": "bumpp",
  39. "lint": "run-p lint:*",
  40. "lint:src": "eslint src/**/*.ts --fix",
  41. "lint:test": "eslint test/**/*.ts --fix",
  42. "lint:tsc": "tsc --noEmit"
  43. },
  44. "dependencies": {
  45. "fp-ts": "^2.13.1",
  46. "happy-dom": "^8.1.0",
  47. "native-dash": "^1.24.0"
  48. },
  49. "devDependencies": {
  50. "@type-challenges/utils": "^0.1.1",
  51. "@types/node": "^16.18.7",
  52. "@typescript-eslint/eslint-plugin": "^5.46.0",
  53. "@typescript-eslint/parser": "^5.46.0",
  54. "@vitest/ui": "^0.25.6",
  55. "bumpp": "^8.2.1",
  56. "callsites": "^4.0.0",
  57. "eslint": "^8.29.0",
  58. "eslint-plugin-import": "^2.26.0",
  59. "eslint-plugin-promise": "^6.1.1",
  60. "eslint-plugin-unicorn": "^45.0.1",
  61. "npm-run-all": "^4.1.5",
  62. "prettier": "^2.8.1",
  63. "tsup": "^6.5.0",
  64. "typescript": "^4.9.4",
  65. "vite": "4.0.0",
  66. "vitest": "^0.25.6",
  67. "vue": "^3.2.45"
  68. }
  69. }