package.json 935 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@kankan/components",
  3. "version": "1.0.0",
  4. "main": "index.ts",
  5. "module": "index.ts",
  6. "unpkg": "index.js",
  7. "types": "index.d.ts",
  8. "files": [
  9. "dist"
  10. ],
  11. "author": {
  12. "name": "gemercheung",
  13. "email": "gemercheung@gmail.com",
  14. "url": "http://gemer.xyz/"
  15. },
  16. "scripts": {
  17. "build": "pnpm run clean && pnpm run compile",
  18. "clean": "rimraf -rf ./dist",
  19. "compile": "rollup -c",
  20. "prepublishOnly": "pnpm run build"
  21. },
  22. "peerDependencies": {
  23. "@kankan/utils": "workspace:^1.0.0",
  24. "vue": "^3.2.0"
  25. },
  26. "devDependencies": {
  27. "@kankan/utils": "workspace:^1.0.0",
  28. "@rollup/plugin-typescript": "~8.3.4",
  29. "rimraf": "~3.0.2",
  30. "rollup": "~2.77.3",
  31. "rollup-plugin-terser": "^7.0.2",
  32. "tslib": "^2.4.0",
  33. "typescript": "~4.7.4"
  34. },
  35. "typedoc": {
  36. "entryPoint": "./src/index.ts",
  37. "readmeFile": "./README.md",
  38. "displayName": "@kankan/components"
  39. }
  40. }