package.json 782 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "@extension/shared",
  3. "version": "0.1.3",
  4. "description": "chrome extension - shared code",
  5. "private": true,
  6. "sideEffects": false,
  7. "files": [
  8. "dist/**"
  9. ],
  10. "types": "index.ts",
  11. "main": "./dist/index.js",
  12. "scripts": {
  13. "clean:bundle": "rimraf dist",
  14. "clean:node_modules": "pnpx rimraf node_modules",
  15. "clean:turbo": "rimraf .turbo",
  16. "clean": "pnpm clean:bundle && pnpm clean:node_modules && pnpm clean:turbo",
  17. "ready": "node build.mjs",
  18. "lint": "eslint . --ext .ts,.tsx",
  19. "lint:fix": "pnpm lint --fix",
  20. "prettier": "prettier . --write --ignore-path ../../.prettierignore",
  21. "type-check": "tsc --noEmit"
  22. },
  23. "devDependencies": {
  24. "@extension/storage": "workspace:*",
  25. "@extension/tsconfig": "workspace:*"
  26. }
  27. }