1a78f9503f39958328a09d2bb5d956081b9d573f78237e7f7d7152d77b12899f8687a61ac36b9756e6077f21833a68a71ded5f46eea2e59bb6f4d7b37db83b 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "strip-literal",
  3. "version": "1.3.0",
  4. "packageManager": "pnpm@8.6.11",
  5. "description": "Strip comments and string literals from JavaScript code",
  6. "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  7. "license": "MIT",
  8. "funding": "https://github.com/sponsors/antfu",
  9. "homepage": "https://github.com/antfu/strip-literal#readme",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/antfu/strip-literal.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/antfu/strip-literal/issues"
  16. },
  17. "keywords": [],
  18. "sideEffects": false,
  19. "exports": {
  20. ".": {
  21. "types": "./dist/index.d.ts",
  22. "import": "./dist/index.mjs",
  23. "require": "./dist/index.cjs"
  24. }
  25. },
  26. "main": "./dist/index.cjs",
  27. "module": "./dist/index.mjs",
  28. "types": "./dist/index.d.ts",
  29. "files": [
  30. "dist"
  31. ],
  32. "scripts": {
  33. "build": "unbuild",
  34. "dev": "unbuild --stub",
  35. "lint": "eslint .",
  36. "prepublishOnly": "nr build",
  37. "release": "bumpp --commit --push --tag && npm publish",
  38. "start": "esmo src/index.ts",
  39. "test": "vitest",
  40. "bench": "vitest bench",
  41. "typecheck": "tsc --noEmit"
  42. },
  43. "dependencies": {
  44. "acorn": "^8.10.0"
  45. },
  46. "devDependencies": {
  47. "@antfu/eslint-config": "^0.40.0",
  48. "@antfu/ni": "^0.21.5",
  49. "@types/node": "^20.4.5",
  50. "bumpp": "^9.1.1",
  51. "eslint": "^8.46.0",
  52. "esmo": "^0.17.0",
  53. "pnpm": "^8.6.11",
  54. "rimraf": "^5.0.1",
  55. "three": "^0.155.0",
  56. "typescript": "^5.1.6",
  57. "unbuild": "^1.2.1",
  58. "vite": "^4.4.8",
  59. "vitest": "^0.34.1",
  60. "vue": "^3.3.4"
  61. }
  62. }