package.json 817 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@dage/krpano",
  3. "version": "2.2.1",
  4. "description": "krpano sdk",
  5. "module": "build/index.js",
  6. "main": "build/index.js",
  7. "typings": "build/index.d.ts",
  8. "files": [
  9. "build"
  10. ],
  11. "scripts": {
  12. "start": "tsc --build tsconfig.build.json --watch",
  13. "prebuild": "rimraf build",
  14. "build": "tsc --build tsconfig.build.json",
  15. "type-check": "tsc --noEmit",
  16. "test": "jest"
  17. },
  18. "peerDependencies": {
  19. "react": ">=18",
  20. "react-dom": ">=18"
  21. },
  22. "devDependencies": {
  23. "@babel/core": "^7.22.10",
  24. "@babel/preset-env": "^7.22.10",
  25. "@babel/preset-typescript": "^7.22.5",
  26. "@types/escape-html": "^1.0.2",
  27. "@types/react": "^18.2.20",
  28. "babel-jest": "^29.6.2",
  29. "jest": "^29.6.2"
  30. },
  31. "license": "MIT",
  32. "dependencies": {
  33. "escape-html": "^1.0.3"
  34. }
  35. }