package.json 885 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@apache-superset/core",
  3. "version": "0.0.1-rc5",
  4. "description": "This package contains UI elements, APIs, and utility functions used by Superset.",
  5. "sideEffects": false,
  6. "main": "lib/index.js",
  7. "types": "lib/index.d.ts",
  8. "files": [
  9. "lib"
  10. ],
  11. "author": "",
  12. "license": "ISC",
  13. "devDependencies": {
  14. "@babel/cli": "^7.28.3",
  15. "@babel/core": "^7.28.3",
  16. "@babel/preset-env": "^7.26.9",
  17. "@babel/preset-react": "^7.26.3",
  18. "@babel/preset-typescript": "^7.26.0",
  19. "@types/react": "^17.0.83",
  20. "install": "^0.13.0",
  21. "npm": "^11.1.0",
  22. "typescript": "^5.0.0"
  23. },
  24. "peerDependencies": {
  25. "antd": "^5.24.9",
  26. "react": "^17.0.2"
  27. },
  28. "scripts": {
  29. "build": "babel src --out-dir lib --extensions \".ts,.tsx\" && tsc --emitDeclarationOnly",
  30. "type": "tsc --noEmit"
  31. },
  32. "publishConfig": {
  33. "access": "public"
  34. }
  35. }