package.json 671 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "ludash",
  3. "version": "1.0.0",
  4. "description": "toolkit",
  5. "main": "lib/index.js",
  6. "typings": "type/index.d.ts",
  7. "scripts": {
  8. "test": "echo \"Error: no test specified\" && exit 1",
  9. "lint": "eslint . --ext .ts --fix",
  10. "lib": "tsc"
  11. },
  12. "repository": "https://gitee.com/swust_0602/ludash.git",
  13. "author": "shawn",
  14. "license": "ISC",
  15. "devDependencies": {
  16. "@typescript-eslint/eslint-plugin": "^5.60.0",
  17. "@typescript-eslint/parser": "^5.60.0",
  18. "eslint": "^8.43.0",
  19. "eslint-config-prettier": "^8.8.0",
  20. "eslint-plugin-prettier": "^4.2.1",
  21. "prettier": "^2.8.8",
  22. "tslib": "^2.5.3",
  23. "typescript": "^5.1.3"
  24. }
  25. }