package.json 922 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "eslint-plugin-semi-design",
  3. "version": "2.18.0-beta.0",
  4. "description": "semi ui eslint plugin",
  5. "keywords": [
  6. "semi",
  7. "eslint"
  8. ],
  9. "author": "shijia.me <[email protected]>",
  10. "homepage": "https://semi.design",
  11. "license": "MIT",
  12. "main": "lib/index.js",
  13. "directories": {
  14. "lib": "lib",
  15. "test": "__tests__"
  16. },
  17. "files": [
  18. "lib",
  19. "README.md",
  20. "README-zh_CN.md"
  21. ],
  22. "publishConfig": {
  23. "registry": "https://registry.npmjs.org"
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "git+https://github.com/DouyinFE/semi-design.git"
  28. },
  29. "scripts": {
  30. "build:lib": "rm -rf lib && tsc",
  31. "prepublishOnly": "npm run build:lib",
  32. "test": "node __tests__/index.js"
  33. },
  34. "devDependencies": {
  35. "typescript": "^4"
  36. },
  37. "peerDependencies": {
  38. "eslint": ">=0.8.0"
  39. },
  40. "bugs": {
  41. "url": "https://github.com/DouyinFE/semi-design/issues"
  42. }
  43. }