版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

42 lines
1020 B

  1. {
  2. "name": "scule",
  3. "version": "1.0.0",
  4. "description": "String case utils",
  5. "repository": "unjs/scule",
  6. "license": "MIT",
  7. "sideEffects": false,
  8. "exports": {
  9. ".": {
  10. "require": "./dist/index.cjs",
  11. "import": "./dist/index.mjs",
  12. "types": "./dist/index.d.ts"
  13. },
  14. "./*": "./*"
  15. },
  16. "main": "./dist/index.cjs",
  17. "module": "./dist/index.mjs",
  18. "types": "./dist/index.d.ts",
  19. "files": [
  20. "dist"
  21. ],
  22. "scripts": {
  23. "build": "unbuild",
  24. "dev": "vitest",
  25. "lint": "eslint --ext .ts .",
  26. "prepublishOnly": "pnpm build",
  27. "release": "pnpm test && standard-version && git push --follow-tags && pnpm publish",
  28. "test": "pnpm lint && vitest run --coverage"
  29. },
  30. "devDependencies": {
  31. "@types/node": "^18.11.9",
  32. "@vitest/coverage-c8": "^0.25.2",
  33. "eslint": "^8.27.0",
  34. "eslint-config-unjs": "^0.0.2",
  35. "standard-version": "^9.5.0",
  36. "typescript": "^4.8.4",
  37. "unbuild": "^0.9.4",
  38. "vitest": "^0.25.2"
  39. },
  40. "packageManager": "pnpm@7.16.0"
  41. }