package.json 855 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "xx-btn",
  3. "description": "test npm",
  4. "version": "1.0.0",
  5. "author": "xxx",
  6. "license": "MIT",
  7. "private": false,
  8. "scripts": {
  9. "dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
  10. "build": "cross-env NODE_ENV=production webpack --progress "
  11. },
  12. "main": "dist/xx-btn.min.js",
  13. "keywords": [
  14. "xx-btn",
  15. "components"
  16. ],
  17. "files": [
  18. "dist",
  19. "src/components"
  20. ],
  21. "homepage": "https://xx.github.io/xx/xx-btn/dist/index.html",
  22. "bugs": {
  23. "url": "https://github.com/xx/xx-btn/issues"
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "https://github.com/xx/xx-btn.git"
  28. },
  29. "devDependencies": {
  30. "@tsconfig/node18": "^18.2.4",
  31. "cross-env": "^7.0.3",
  32. "webpack": "^5.99.5",
  33. "webpack-cli": "^6.0.1"
  34. },
  35. "dependencies": {
  36. "xx-btn": "file:xx-btn-1.0.0.tgz"
  37. }
  38. }