package.json 586 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "@ruben/ed-pkg",
  3. "version": "1.0.0",
  4. "main": "lib/index.js",
  5. "types": "lib/index.d.ts",
  6. "files": [
  7. "lib/"
  8. ],
  9. "scripts": {
  10. "test": "echo \"Error: no test specified\" && exit 1",
  11. "build": "tsc -p ."
  12. },
  13. "repository": "git@gitlab.com:rubenxrb/npm-pkg-ts.git",
  14. "author": "Ruben Romero <rubenxrb@gmail.com>",
  15. "license": "MIT",
  16. "devDependencies": {
  17. "@types/node": "^16.7.8",
  18. "@types/react": "^17.0.19",
  19. "@types/react-router": "^5.1.16",
  20. "@types/react-router-dom": "^5.1.8",
  21. "react": "^17.0.2",
  22. "typescript": "^4.3.5"
  23. }
  24. }