package.json 962 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "vitefu",
  3. "description": "Utilities for building frameworks with Vite",
  4. "version": "1.1.2",
  5. "license": "MIT",
  6. "type": "module",
  7. "types": "./src/index.d.ts",
  8. "exports": {
  9. ".": {
  10. "import": "./src/index.js",
  11. "require": "./src/index.cjs"
  12. }
  13. },
  14. "files": [
  15. "src"
  16. ],
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/svitejs/vitefu.git"
  20. },
  21. "bugs": {
  22. "url": "https://github.com/svitejs/vitefu/issues"
  23. },
  24. "keywords": [
  25. "vite",
  26. "framework",
  27. "utilities"
  28. ],
  29. "scripts": {
  30. "test": "uvu tests \".*\\.test\\.js\""
  31. },
  32. "peerDependencies": {
  33. "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-beta.0"
  34. },
  35. "peerDependenciesMeta": {
  36. "vite": {
  37. "optional": true
  38. }
  39. },
  40. "devDependencies": {
  41. "@types/node": "^14.18.63",
  42. "@types/pnpapi": "^0.0.5",
  43. "uvu": "^0.5.6",
  44. "vite": "^3.2.11"
  45. },
  46. "workspaces": [
  47. "tests/deps/*",
  48. "tests/projects/*",
  49. "tests/projects/workspace/packages/*"
  50. ]
  51. }