package.json 477 B

12345678910111213141516171819202122
  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/react": "^17.0.19",
  18. "react": "^17.0.2",
  19. "typescript": "^4.3.5"
  20. }
  21. }