123456789101112131415161718192021222324252627 |
- {
- "name": "@extension/shared",
- "version": "0.1.3",
- "description": "chrome extension - shared code",
- "private": true,
- "sideEffects": false,
- "files": [
- "dist/**"
- ],
- "types": "index.ts",
- "main": "./dist/index.js",
- "scripts": {
- "clean:bundle": "rimraf dist",
- "clean:node_modules": "pnpx rimraf node_modules",
- "clean:turbo": "rimraf .turbo",
- "clean": "pnpm clean:bundle && pnpm clean:node_modules && pnpm clean:turbo",
- "ready": "node build.mjs",
- "lint": "eslint . --ext .ts,.tsx",
- "lint:fix": "pnpm lint --fix",
- "prettier": "prettier . --write --ignore-path ../../.prettierignore",
- "type-check": "tsc --noEmit"
- },
- "devDependencies": {
- "@extension/storage": "workspace:*",
- "@extension/tsconfig": "workspace:*"
- }
- }
|