package.json 898 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@dage/krpano",
  3. "version": "4.0.0",
  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. "@dage/utils": ">=1.3.0"
  22. },
  23. "devDependencies": {
  24. "@babel/core": "^7.22.10",
  25. "@babel/preset-env": "^7.22.10",
  26. "@babel/preset-typescript": "^7.22.5",
  27. "@types/escape-html": "^1.0.2",
  28. "@types/react": "^18.2.20",
  29. "babel-jest": "^29.6.2",
  30. "jest": "^29.6.2"
  31. },
  32. "license": "MIT",
  33. "dependencies": {
  34. "escape-html": "^1.0.3",
  35. "mobx": "^6.13.2",
  36. "mobx-react": "^9.1.1"
  37. }
  38. }