package.json 897 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@dage/krpano",
  3. "version": "3.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. "peerDependencies": {
  12. "react": ">=18",
  13. "react-dom": ">=18",
  14. "@dage/utils": ">=1.1.0"
  15. },
  16. "devDependencies": {
  17. "@babel/core": "^7.22.10",
  18. "@babel/preset-env": "^7.22.10",
  19. "@babel/preset-typescript": "^7.22.5",
  20. "@types/escape-html": "^1.0.2",
  21. "@types/react": "^18.2.20",
  22. "babel-jest": "^29.6.2",
  23. "jest": "^29.6.2"
  24. },
  25. "license": "MIT",
  26. "dependencies": {
  27. "escape-html": "^1.0.3",
  28. "mobx": "^6.13.2",
  29. "mobx-react": "^9.1.1"
  30. },
  31. "scripts": {
  32. "start": "tsc --build tsconfig.build.json --watch",
  33. "prebuild": "rimraf build",
  34. "build": "tsc --build tsconfig.build.json",
  35. "type-check": "tsc --noEmit",
  36. "test": "jest"
  37. }
  38. }