From 60406826e5d03a5502461d0528d4c7717178c0c2 Mon Sep 17 00:00:00 2001 From: George Oastler Date: Fri, 24 May 2024 14:36:38 +0100 Subject: [PATCH 1/2] add prettier and eslint caching --- contracts/captcha/package.json | 6 +++--- contracts/common/package.json | 6 +++--- contracts/proxy/package.json | 6 +++--- demos/client-bundle-example/package.json | 6 +++--- demos/client-example-server/package.json | 6 +++--- demos/client-example/package.json | 6 +++--- demos/client-frictionless-example/package.json | 6 +++--- demos/client-pow-example/package.json | 6 +++--- demos/cypress-shared/package.json | 6 +++--- demos/provider-mock/package.json | 6 +++--- dev/config/package.json | 6 +++--- dev/flux/package.json | 6 +++--- dev/gh-actions/package.json | 6 +++--- dev/prosoponator-bot/package.json | 6 +++--- dev/scripts/package.json | 6 +++--- dev/ts-brand/package.json | 6 +++--- dev/tsconfig-checker/package.json | 6 +++--- dev/vite-plugin-watch-workspace/package.json | 6 +++--- package.json | 6 +++--- packages/account/package.json | 6 +++--- packages/api/package.json | 6 +++--- packages/cli/package.json | 6 +++--- packages/common/package.json | 6 +++--- packages/contract/package.json | 6 +++--- packages/database/package.json | 6 +++--- packages/datasets-fs/package.json | 6 +++--- packages/datasets/package.json | 6 +++--- packages/env/package.json | 6 +++--- packages/file-server/package.json | 6 +++--- packages/procaptcha-bundle/package.json | 6 +++--- packages/procaptcha-common/package.json | 6 +++--- packages/procaptcha-frictionless/package.json | 6 +++--- packages/procaptcha-pow/package.json | 6 +++--- packages/procaptcha-react/package.json | 6 +++--- packages/procaptcha/package.json | 6 +++--- packages/provider/package.json | 6 +++--- packages/server/package.json | 6 +++--- packages/tx/package.json | 6 +++--- packages/types-database/package.json | 6 +++--- packages/types-env/package.json | 6 +++--- packages/types/package.json | 6 +++--- packages/util/package.json | 6 +++--- packages/web-components/package.json | 6 +++--- protocol/dev/package.json | 6 +++--- provider-gui/package.json | 6 +++--- 45 files changed, 135 insertions(+), 135 deletions(-) diff --git a/contracts/captcha/package.json b/contracts/captcha/package.json index 8ad6ca3ca0..7e6f7fe4e4 100644 --- a/contracts/captcha/package.json +++ b/contracts/captcha/package.json @@ -97,9 +97,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -133,4 +133,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/contracts/common/package.json b/contracts/common/package.json index d87dda7a1c..49876a29b7 100644 --- a/contracts/common/package.json +++ b/contracts/common/package.json @@ -8,9 +8,9 @@ "test": "echo \"No test specified\"", "clean": "tsc --build --clean", "build": "tsc --build --verbose", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -44,4 +44,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/contracts/proxy/package.json b/contracts/proxy/package.json index f8a1272799..5e0025a748 100644 --- a/contracts/proxy/package.json +++ b/contracts/proxy/package.json @@ -8,9 +8,9 @@ "test": "echo \"No test specified\"", "clean": "tsc --build --clean", "build": "tsc --build --verbose", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -44,4 +44,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/demos/client-bundle-example/package.json b/demos/client-bundle-example/package.json index 27eb00b19d..8164c02615 100644 --- a/demos/client-bundle-example/package.json +++ b/demos/client-bundle-example/package.json @@ -9,9 +9,9 @@ "test": "echo \"No test specified\"", "start": "vite serve ./src --port 9232 --config vite.config.ts", "clean": "echo 'nothing to clean'", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -25,4 +25,4 @@ "tslib": "2.6.2", "typescript": "5.1.6" } -} +} \ No newline at end of file diff --git a/demos/client-example-server/package.json b/demos/client-example-server/package.json index 3e43e01f22..5cb40eedfc 100644 --- a/demos/client-example-server/package.json +++ b/demos/client-example-server/package.json @@ -17,9 +17,9 @@ "bundle:prod": "vite build --mode=production --config ./vite.config.ts", "bundle:dev": "vite build --mode=development --config ./vite.config.ts", "clean": "tsc --build --clean", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -57,4 +57,4 @@ "vite": "^5.1.7", "@prosopo/config": "0.3.41" } -} +} \ No newline at end of file diff --git a/demos/client-example/package.json b/demos/client-example/package.json index ee441556d7..12be4d6a8d 100644 --- a/demos/client-example/package.json +++ b/demos/client-example/package.json @@ -55,9 +55,9 @@ "bundle:prod": "vite build --mode=production --config vite.config.ts --outDir dist --emptyOutDir", "bundle:dev": "vite build --mode=development --config vite.config.ts --outDir dist --emptyOutDir", "clean": "tsc --build --clean", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -74,4 +74,4 @@ "last 1 safari version" ] } -} +} \ No newline at end of file diff --git a/demos/client-frictionless-example/package.json b/demos/client-frictionless-example/package.json index 84aa7fb3f5..687197b528 100644 --- a/demos/client-frictionless-example/package.json +++ b/demos/client-frictionless-example/package.json @@ -38,9 +38,9 @@ "bundle:prod": "vite build --mode=production --config vite.config.ts --outDir dist --emptyOutDir", "bundle:dev": "vite build --mode=development --config vite.config.ts --outDir dist --emptyOutDir", "clean": "tsc --build --clean", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -57,4 +57,4 @@ "last 1 safari version" ] } -} +} \ No newline at end of file diff --git a/demos/client-pow-example/package.json b/demos/client-pow-example/package.json index 15713ecf3a..ad5f6a0fa8 100644 --- a/demos/client-pow-example/package.json +++ b/demos/client-pow-example/package.json @@ -38,9 +38,9 @@ "bundle:prod": "vite build --mode=production --config vite.config.ts --outDir dist --emptyOutDir", "bundle:dev": "vite build --mode=development --config vite.config.ts --outDir dist --emptyOutDir", "clean": "tsc --build --clean", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -57,4 +57,4 @@ "last 1 safari version" ] } -} +} \ No newline at end of file diff --git a/demos/cypress-shared/package.json b/demos/cypress-shared/package.json index 930c053659..62f3c21135 100644 --- a/demos/cypress-shared/package.json +++ b/demos/cypress-shared/package.json @@ -38,11 +38,11 @@ "cypress:run:client-bundle-example:frictionless": "CYPRESS_BASE_URL='http://localhost:9232' cypress run --env default_page='/frictionless.html'", "cypress:open:client-bundle-example:js_server": "CYPRESS_BASE_URL='http://localhost:9232' cypress open --env default_page='/jsBundleTest.html'", "cypress:run:client-bundle-example:js_server": "CYPRESS_BASE_URL='http://localhost:9232' cypress run --env default_page='/jsBundleTest.html' --spec 'cypress/e2e/captcha.cy.ts'", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" } -} +} \ No newline at end of file diff --git a/demos/provider-mock/package.json b/demos/provider-mock/package.json index 05c4c1ef90..01b9ae9d17 100644 --- a/demos/provider-mock/package.json +++ b/demos/provider-mock/package.json @@ -13,9 +13,9 @@ "test": "echo \"No test specified\"", "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -40,4 +40,4 @@ }, "homepage": "https://github.com/prosopo/captcha#readme", "sideEffects": false -} +} \ No newline at end of file diff --git a/dev/config/package.json b/dev/config/package.json index 6259f6af7a..a25e2b514c 100644 --- a/dev/config/package.json +++ b/dev/config/package.json @@ -23,9 +23,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose", "build:cjs": "vite build --config vite.cjs.config.ts", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -108,4 +108,4 @@ "registry": "https://registry.npmjs.org" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/dev/flux/package.json b/dev/flux/package.json index d0e3da861e..91332da962 100644 --- a/dev/flux/package.json +++ b/dev/flux/package.json @@ -17,9 +17,9 @@ "build": "tsc --build --verbose", "build:cjs": "npx vite --config vite.cjs.config.ts build", "cli": "node dist/index.js", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -52,4 +52,4 @@ "typescript": "5.1.6", "vitest": "^0.34.2" } -} +} \ No newline at end of file diff --git a/dev/gh-actions/package.json b/dev/gh-actions/package.json index 831cbaafe4..bc7d2936df 100644 --- a/dev/gh-actions/package.json +++ b/dev/gh-actions/package.json @@ -8,9 +8,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose", "start": "npx tsx src/index.ts", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -34,4 +34,4 @@ "node": ">=18", "npm": ">=9" } -} +} \ No newline at end of file diff --git a/dev/prosoponator-bot/package.json b/dev/prosoponator-bot/package.json index f7abab2929..70f30d6c61 100644 --- a/dev/prosoponator-bot/package.json +++ b/dev/prosoponator-bot/package.json @@ -8,9 +8,9 @@ "build": "tsc --build --verbose", "start": "npx tsx src/index.ts", "test": "echo 'No test specified'", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -36,4 +36,4 @@ "node": ">=18", "npm": ">=9" } -} +} \ No newline at end of file diff --git a/dev/scripts/package.json b/dev/scripts/package.json index 36d875e3b6..553e0ed7a7 100644 --- a/dev/scripts/package.json +++ b/dev/scripts/package.json @@ -15,9 +15,9 @@ "deploy": "node dist/deploy/protocol.js", "cli": "node dist/cli/index.js", "setup": "node dist/cli/index.js setup", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix", @@ -70,4 +70,4 @@ "typescript": "5.1.6", "vitest": "^1.3.1" } -} +} \ No newline at end of file diff --git a/dev/ts-brand/package.json b/dev/ts-brand/package.json index 1db4020f1b..2e2b71bc97 100644 --- a/dev/ts-brand/package.json +++ b/dev/ts-brand/package.json @@ -20,9 +20,9 @@ "build": "tsc --build --verbose", "build:cjs": "npx vite --config vite.cjs.config.ts build", "test": "npx vitest run --config ./vite.test.config.ts", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -47,4 +47,4 @@ "registry": "https://registry.npmjs.org" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/dev/tsconfig-checker/package.json b/dev/tsconfig-checker/package.json index 21b8d8411b..fc9661f900 100644 --- a/dev/tsconfig-checker/package.json +++ b/dev/tsconfig-checker/package.json @@ -8,9 +8,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose", "start": "npx tsx src/check.ts", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -32,4 +32,4 @@ "dependencies": { "@prosopo/util": "0.3.41" } -} +} \ No newline at end of file diff --git a/dev/vite-plugin-watch-workspace/package.json b/dev/vite-plugin-watch-workspace/package.json index c5b6fc046f..4e53f74eb4 100644 --- a/dev/vite-plugin-watch-workspace/package.json +++ b/dev/vite-plugin-watch-workspace/package.json @@ -15,9 +15,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -50,4 +50,4 @@ "registry": "https://registry.npmjs.org" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/package.json b/package.json index 87c5203476..1da6b67427 100644 --- a/package.json +++ b/package.json @@ -48,14 +48,14 @@ "test:all": "npm run --workspaces --if-present test", "eslint": "npm --workspaces run eslint && npm run eslint:workspace", "eslint:workspace": "npm run eslint:cmd -- '.*.*' '*.*' .vscode .github ", - "eslint:cmd": "DEBUG=eslint:cli-engine npx eslint --ignore-path .eslintignore --no-error-on-unmatched-pattern", + "eslint:cmd": "DEBUG=eslint:cli-engine npx eslint --ignore-path .eslintignore --no-error-on-unmatched-pattern --cache --cache-location node_modules/.cache/eslint/.eslintcache", "eslint:contracts": "npm -w @prosopo/captcha-contract -w @prosopo/common-contract -w @prosopo/proxy-contract run eslint", "eslint:fix": "npm --workspaces run eslint:fix && npm run eslint:fix:workspace", "eslint:fix:workspace": "npm run eslint:workspace -- --fix", "eslint:fix:contracts": "npm -w @prosopo/captcha-contract -w @prosopo/common-contract -w @prosopo/proxy-contract run eslint:fix", "prettier": "npm --workspaces run prettier && npm run prettier:workspace", "prettier:workspace": "npm run prettier:cmd -- '.*.*' '*.*' .vscode .github", - "prettier:cmd": "npx prettier --no-error-on-unmatched-pattern --check --ignore-path .eslintignore", + "prettier:cmd": "npx prettier --no-error-on-unmatched-pattern --check --ignore-path .eslintignore --cache --cache-location node_modules/.cache/prettier/.prettiercache", "prettier:contracts": "npm -w @prosopo/captcha-contract -w @prosopo/common-contract -w @prosopo/proxy-contract run prettier", "prettier:fix": "npm --workspaces run prettier:fix && npm run prettier:fix:workspace", "prettier:fix:workspace": "npm run prettier:workspace -- --write", @@ -159,4 +159,4 @@ "web3-captcha" ], "license": "Apache-2.0" -} +} \ No newline at end of file diff --git a/packages/account/package.json b/packages/account/package.json index 2cdb297c5d..47505ee19e 100644 --- a/packages/account/package.json +++ b/packages/account/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -57,4 +57,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/packages/api/package.json b/packages/api/package.json index ad6a6e5204..4e903d4d8e 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -46,4 +46,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/packages/cli/package.json b/packages/cli/package.json index 9e89bb759b..c74bc0e0bf 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -23,9 +23,9 @@ "test": "npx vitest run --config ./vite.test.config.ts", "cli": "node ./dist/cli.js", "start": "node ./dist/cli.js --api", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -61,4 +61,4 @@ "author": "Prosopo", "license": "Apache-2.0", "sideEffects": false -} +} \ No newline at end of file diff --git a/packages/common/package.json b/packages/common/package.json index bce16146ba..f08d6453c4 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -20,9 +20,9 @@ "build": "tsc --build --verbose", "build:cjs": "npx vite --config vite.cjs.config.ts build", "test": "npx vitest run --config ./vite.test.config.ts", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -59,4 +59,4 @@ "registry": "https://registry.npmjs.org" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/packages/contract/package.json b/packages/contract/package.json index 9b6666f821..41500296b6 100644 --- a/packages/contract/package.json +++ b/packages/contract/package.json @@ -8,9 +8,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -81,4 +81,4 @@ }, "description": "", "sideEffects": false -} +} \ No newline at end of file diff --git a/packages/database/package.json b/packages/database/package.json index f8d4088aca..efb0d5567a 100644 --- a/packages/database/package.json +++ b/packages/database/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -52,4 +52,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/packages/datasets-fs/package.json b/packages/datasets-fs/package.json index 97ee817a1e..fcf0dfd4ad 100644 --- a/packages/datasets-fs/package.json +++ b/packages/datasets-fs/package.json @@ -13,9 +13,9 @@ "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", "test": "npx vitest run --config ./vite.test.config.ts", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix", @@ -67,4 +67,4 @@ "test": "tests" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/packages/datasets/package.json b/packages/datasets/package.json index b3960d41bc..df6366df20 100644 --- a/packages/datasets/package.json +++ b/packages/datasets/package.json @@ -13,9 +13,9 @@ "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", "test": "npx vitest run --config ./vite.test.config.ts", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix", @@ -75,4 +75,4 @@ "test": "tests" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/packages/env/package.json b/packages/env/package.json index 05ec3d73b1..083b8f3d7a 100644 --- a/packages/env/package.json +++ b/packages/env/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -51,4 +51,4 @@ "author": "Prosopo", "license": "Apache-2.0", "sideEffects": false -} +} \ No newline at end of file diff --git a/packages/file-server/package.json b/packages/file-server/package.json index 2fb4924e42..3fbd1c3f05 100644 --- a/packages/file-server/package.json +++ b/packages/file-server/package.json @@ -20,9 +20,9 @@ "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", "start": "node ./dist/index.js", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -43,4 +43,4 @@ "author": "Prosopo", "license": "Apache-2.0", "sideEffects": false -} +} \ No newline at end of file diff --git a/packages/procaptcha-bundle/package.json b/packages/procaptcha-bundle/package.json index d95de437d4..98cafcefee 100644 --- a/packages/procaptcha-bundle/package.json +++ b/packages/procaptcha-bundle/package.json @@ -27,9 +27,9 @@ "bundle:dev": "vite build --config vite.config.ts --mode development --debug", "bundle:dev:webpack": "webpack build --config webpack.config.cjs --mode development", "bundle:prod": "vite build --config vite.config.ts --mode production", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -65,4 +65,4 @@ "vite": "^5.1.7", "typescript": "^5.1.6" } -} +} \ No newline at end of file diff --git a/packages/procaptcha-common/package.json b/packages/procaptcha-common/package.json index 1d06b65d34..6074fd9be5 100644 --- a/packages/procaptcha-common/package.json +++ b/packages/procaptcha-common/package.json @@ -23,9 +23,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -53,4 +53,4 @@ "publishConfig": { "registry": "https://registry.npmjs.org" } -} +} \ No newline at end of file diff --git a/packages/procaptcha-frictionless/package.json b/packages/procaptcha-frictionless/package.json index 28e91ca1e9..31c710495f 100644 --- a/packages/procaptcha-frictionless/package.json +++ b/packages/procaptcha-frictionless/package.json @@ -23,9 +23,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -57,4 +57,4 @@ "publishConfig": { "registry": "https://registry.npmjs.org" } -} +} \ No newline at end of file diff --git a/packages/procaptcha-pow/package.json b/packages/procaptcha-pow/package.json index 9c8659f4f0..2fb031da59 100644 --- a/packages/procaptcha-pow/package.json +++ b/packages/procaptcha-pow/package.json @@ -23,9 +23,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -73,4 +73,4 @@ "publishConfig": { "registry": "https://registry.npmjs.org" } -} +} \ No newline at end of file diff --git a/packages/procaptcha-react/package.json b/packages/procaptcha-react/package.json index c2c8ce841c..7ab6b8fb55 100644 --- a/packages/procaptcha-react/package.json +++ b/packages/procaptcha-react/package.json @@ -23,9 +23,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -71,4 +71,4 @@ "publishConfig": { "registry": "https://registry.npmjs.org" } -} +} \ No newline at end of file diff --git a/packages/procaptcha/package.json b/packages/procaptcha/package.json index 0da08f4471..51bc0b6673 100644 --- a/packages/procaptcha/package.json +++ b/packages/procaptcha/package.json @@ -14,9 +14,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix", @@ -83,4 +83,4 @@ "registry": "https://registry.npmjs.org" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/packages/provider/package.json b/packages/provider/package.json index 8aa1b0471e..e7e121fc66 100644 --- a/packages/provider/package.json +++ b/packages/provider/package.json @@ -24,9 +24,9 @@ "test": "npx vitest run --config ./vite.test.config.ts", "mnemonic": "ts-node ./scripts/generateMnemonic.ts", "coverage": "npx c8 npm run test", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -85,4 +85,4 @@ }, "homepage": "https://github.com/prosopo/captcha#readme", "sideEffects": false -} +} \ No newline at end of file diff --git a/packages/server/package.json b/packages/server/package.json index 6a0f7c79c9..56437f22d8 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -52,4 +52,4 @@ "tslib": "2.6.2", "typescript": "5.1.6" } -} +} \ No newline at end of file diff --git a/packages/tx/package.json b/packages/tx/package.json index 71ad872690..47998e7d1c 100644 --- a/packages/tx/package.json +++ b/packages/tx/package.json @@ -8,9 +8,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -64,4 +64,4 @@ }, "description": "", "sideEffects": false -} +} \ No newline at end of file diff --git a/packages/types-database/package.json b/packages/types-database/package.json index 06fce6110e..886f89b3ec 100644 --- a/packages/types-database/package.json +++ b/packages/types-database/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -49,4 +49,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/packages/types-env/package.json b/packages/types-env/package.json index fa50f4efff..3111da0c04 100644 --- a/packages/types-env/package.json +++ b/packages/types-env/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -50,4 +50,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/packages/types/package.json b/packages/types/package.json index f75e153fe3..bc1b0aa616 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -54,4 +54,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/packages/util/package.json b/packages/util/package.json index 7a1445cbb1..11ad080a9e 100644 --- a/packages/util/package.json +++ b/packages/util/package.json @@ -12,9 +12,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix", @@ -65,4 +65,4 @@ }, "description": "Utility package to house all code that is not specific to prosopo. E.g. random number generation, string manipulation, etc.", "sideEffects": false -} +} \ No newline at end of file diff --git a/packages/web-components/package.json b/packages/web-components/package.json index 9398c4c666..8fa20321f9 100644 --- a/packages/web-components/package.json +++ b/packages/web-components/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -47,4 +47,4 @@ "@prosopo/config": "0.3.41" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/protocol/dev/package.json b/protocol/dev/package.json index b493229e0a..2bc8753cd6 100644 --- a/protocol/dev/package.json +++ b/protocol/dev/package.json @@ -13,9 +13,9 @@ "build": "tsc", "cli": "f() { tsx src/cli.ts -- -- $@ ;}; f", "clean": "tsc --build --clean", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -43,4 +43,4 @@ "typescript": "5.1.6" }, "private": true -} +} \ No newline at end of file diff --git a/provider-gui/package.json b/provider-gui/package.json index b982525277..34738b82f6 100644 --- a/provider-gui/package.json +++ b/provider-gui/package.json @@ -12,9 +12,9 @@ "build": "next build", "clean": "rm -rf .next", "start": "next start", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../.eslintignore", + "eslint": "npx eslint . --cache --cache-location ../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../.eslintignore", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" @@ -63,4 +63,4 @@ "typescript": "5.1.6", "utf-8-validate": "5.0.2" } -} +} \ No newline at end of file From 1da9d869048347779012e89097bd9cfbdb31a054 Mon Sep 17 00:00:00 2001 From: George Oastler Date: Fri, 24 May 2024 14:42:15 +0100 Subject: [PATCH 2/2] lint --- contracts/captcha/package.json | 2 +- contracts/common/package.json | 2 +- contracts/proxy/package.json | 2 +- demos/client-bundle-example/package.json | 2 +- demos/client-example-server/package.json | 2 +- demos/client-example/package.json | 2 +- demos/client-frictionless-example/package.json | 2 +- demos/client-pow-example/package.json | 2 +- demos/cypress-shared/package.json | 2 +- demos/provider-mock/package.json | 2 +- dev/config/package.json | 2 +- dev/flux/package.json | 2 +- dev/gh-actions/package.json | 2 +- dev/prosoponator-bot/package.json | 2 +- dev/scripts/package.json | 2 +- dev/ts-brand/package.json | 2 +- dev/tsconfig-checker/package.json | 2 +- dev/vite-plugin-watch-workspace/package.json | 2 +- package.json | 2 +- packages/account/package.json | 2 +- packages/api/package.json | 2 +- packages/cli/package.json | 2 +- packages/common/package.json | 2 +- packages/contract/package.json | 2 +- packages/database/package.json | 2 +- packages/datasets-fs/package.json | 2 +- packages/datasets/package.json | 2 +- packages/env/package.json | 2 +- packages/file-server/package.json | 2 +- packages/procaptcha-bundle/package.json | 2 +- packages/procaptcha-common/package.json | 2 +- packages/procaptcha-frictionless/package.json | 2 +- packages/procaptcha-pow/package.json | 2 +- packages/procaptcha-react/package.json | 2 +- packages/procaptcha/package.json | 2 +- packages/provider/package.json | 2 +- packages/server/package.json | 2 +- packages/tx/package.json | 2 +- packages/types-database/package.json | 2 +- packages/types-env/package.json | 2 +- packages/types/package.json | 2 +- packages/util/package.json | 2 +- packages/web-components/package.json | 2 +- protocol/dev/package.json | 2 +- provider-gui/package.json | 2 +- 45 files changed, 45 insertions(+), 45 deletions(-) diff --git a/contracts/captcha/package.json b/contracts/captcha/package.json index 7e6f7fe4e4..f57a25455f 100644 --- a/contracts/captcha/package.json +++ b/contracts/captcha/package.json @@ -133,4 +133,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} \ No newline at end of file +} diff --git a/contracts/common/package.json b/contracts/common/package.json index 49876a29b7..7356391cf6 100644 --- a/contracts/common/package.json +++ b/contracts/common/package.json @@ -44,4 +44,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} \ No newline at end of file +} diff --git a/contracts/proxy/package.json b/contracts/proxy/package.json index 5e0025a748..eb1a3fa4dc 100644 --- a/contracts/proxy/package.json +++ b/contracts/proxy/package.json @@ -44,4 +44,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} \ No newline at end of file +} diff --git a/demos/client-bundle-example/package.json b/demos/client-bundle-example/package.json index 8164c02615..19164e3d6e 100644 --- a/demos/client-bundle-example/package.json +++ b/demos/client-bundle-example/package.json @@ -25,4 +25,4 @@ "tslib": "2.6.2", "typescript": "5.1.6" } -} \ No newline at end of file +} diff --git a/demos/client-example-server/package.json b/demos/client-example-server/package.json index 5cb40eedfc..4f859854ef 100644 --- a/demos/client-example-server/package.json +++ b/demos/client-example-server/package.json @@ -57,4 +57,4 @@ "vite": "^5.1.7", "@prosopo/config": "0.3.41" } -} \ No newline at end of file +} diff --git a/demos/client-example/package.json b/demos/client-example/package.json index 12be4d6a8d..6ff46c2599 100644 --- a/demos/client-example/package.json +++ b/demos/client-example/package.json @@ -74,4 +74,4 @@ "last 1 safari version" ] } -} \ No newline at end of file +} diff --git a/demos/client-frictionless-example/package.json b/demos/client-frictionless-example/package.json index 687197b528..9141df283b 100644 --- a/demos/client-frictionless-example/package.json +++ b/demos/client-frictionless-example/package.json @@ -57,4 +57,4 @@ "last 1 safari version" ] } -} \ No newline at end of file +} diff --git a/demos/client-pow-example/package.json b/demos/client-pow-example/package.json index ad5f6a0fa8..eef5c68a27 100644 --- a/demos/client-pow-example/package.json +++ b/demos/client-pow-example/package.json @@ -57,4 +57,4 @@ "last 1 safari version" ] } -} \ No newline at end of file +} diff --git a/demos/cypress-shared/package.json b/demos/cypress-shared/package.json index 62f3c21135..44692361c1 100644 --- a/demos/cypress-shared/package.json +++ b/demos/cypress-shared/package.json @@ -45,4 +45,4 @@ "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" } -} \ No newline at end of file +} diff --git a/demos/provider-mock/package.json b/demos/provider-mock/package.json index 01b9ae9d17..581a499d61 100644 --- a/demos/provider-mock/package.json +++ b/demos/provider-mock/package.json @@ -40,4 +40,4 @@ }, "homepage": "https://github.com/prosopo/captcha#readme", "sideEffects": false -} \ No newline at end of file +} diff --git a/dev/config/package.json b/dev/config/package.json index a25e2b514c..66d4c53b52 100644 --- a/dev/config/package.json +++ b/dev/config/package.json @@ -108,4 +108,4 @@ "registry": "https://registry.npmjs.org" }, "sideEffects": false -} \ No newline at end of file +} diff --git a/dev/flux/package.json b/dev/flux/package.json index 91332da962..27cbd97672 100644 --- a/dev/flux/package.json +++ b/dev/flux/package.json @@ -52,4 +52,4 @@ "typescript": "5.1.6", "vitest": "^0.34.2" } -} \ No newline at end of file +} diff --git a/dev/gh-actions/package.json b/dev/gh-actions/package.json index bc7d2936df..207be74f8d 100644 --- a/dev/gh-actions/package.json +++ b/dev/gh-actions/package.json @@ -34,4 +34,4 @@ "node": ">=18", "npm": ">=9" } -} \ No newline at end of file +} diff --git a/dev/prosoponator-bot/package.json b/dev/prosoponator-bot/package.json index 70f30d6c61..616baa1d2f 100644 --- a/dev/prosoponator-bot/package.json +++ b/dev/prosoponator-bot/package.json @@ -36,4 +36,4 @@ "node": ">=18", "npm": ">=9" } -} \ No newline at end of file +} diff --git a/dev/scripts/package.json b/dev/scripts/package.json index 553e0ed7a7..569073e64b 100644 --- a/dev/scripts/package.json +++ b/dev/scripts/package.json @@ -70,4 +70,4 @@ "typescript": "5.1.6", "vitest": "^1.3.1" } -} \ No newline at end of file +} diff --git a/dev/ts-brand/package.json b/dev/ts-brand/package.json index 2e2b71bc97..831ff63ed9 100644 --- a/dev/ts-brand/package.json +++ b/dev/ts-brand/package.json @@ -47,4 +47,4 @@ "registry": "https://registry.npmjs.org" }, "sideEffects": false -} \ No newline at end of file +} diff --git a/dev/tsconfig-checker/package.json b/dev/tsconfig-checker/package.json index fc9661f900..a80b6b258d 100644 --- a/dev/tsconfig-checker/package.json +++ b/dev/tsconfig-checker/package.json @@ -32,4 +32,4 @@ "dependencies": { "@prosopo/util": "0.3.41" } -} \ No newline at end of file +} diff --git a/dev/vite-plugin-watch-workspace/package.json b/dev/vite-plugin-watch-workspace/package.json index 4e53f74eb4..2978a94b0b 100644 --- a/dev/vite-plugin-watch-workspace/package.json +++ b/dev/vite-plugin-watch-workspace/package.json @@ -50,4 +50,4 @@ "registry": "https://registry.npmjs.org" }, "sideEffects": false -} \ No newline at end of file +} diff --git a/package.json b/package.json index 1da6b67427..03617c4ce1 100644 --- a/package.json +++ b/package.json @@ -159,4 +159,4 @@ "web3-captcha" ], "license": "Apache-2.0" -} \ No newline at end of file +} diff --git a/packages/account/package.json b/packages/account/package.json index 47505ee19e..3d041d62a1 100644 --- a/packages/account/package.json +++ b/packages/account/package.json @@ -57,4 +57,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} \ No newline at end of file +} diff --git a/packages/api/package.json b/packages/api/package.json index 4e903d4d8e..8d063dd914 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -46,4 +46,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} \ No newline at end of file +} diff --git a/packages/cli/package.json b/packages/cli/package.json index c74bc0e0bf..40b3acb2d3 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -61,4 +61,4 @@ "author": "Prosopo", "license": "Apache-2.0", "sideEffects": false -} \ No newline at end of file +} diff --git a/packages/common/package.json b/packages/common/package.json index f08d6453c4..0bb5047cea 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -59,4 +59,4 @@ "registry": "https://registry.npmjs.org" }, "sideEffects": false -} \ No newline at end of file +} diff --git a/packages/contract/package.json b/packages/contract/package.json index 41500296b6..620b13bb48 100644 --- a/packages/contract/package.json +++ b/packages/contract/package.json @@ -81,4 +81,4 @@ }, "description": "", "sideEffects": false -} \ No newline at end of file +} diff --git a/packages/database/package.json b/packages/database/package.json index efb0d5567a..f955b1263a 100644 --- a/packages/database/package.json +++ b/packages/database/package.json @@ -52,4 +52,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} \ No newline at end of file +} diff --git a/packages/datasets-fs/package.json b/packages/datasets-fs/package.json index fcf0dfd4ad..14902f3796 100644 --- a/packages/datasets-fs/package.json +++ b/packages/datasets-fs/package.json @@ -67,4 +67,4 @@ "test": "tests" }, "sideEffects": false -} \ No newline at end of file +} diff --git a/packages/datasets/package.json b/packages/datasets/package.json index df6366df20..0bcfd958c6 100644 --- a/packages/datasets/package.json +++ b/packages/datasets/package.json @@ -75,4 +75,4 @@ "test": "tests" }, "sideEffects": false -} \ No newline at end of file +} diff --git a/packages/env/package.json b/packages/env/package.json index 083b8f3d7a..8635debf58 100644 --- a/packages/env/package.json +++ b/packages/env/package.json @@ -51,4 +51,4 @@ "author": "Prosopo", "license": "Apache-2.0", "sideEffects": false -} \ No newline at end of file +} diff --git a/packages/file-server/package.json b/packages/file-server/package.json index 3fbd1c3f05..be5fa55867 100644 --- a/packages/file-server/package.json +++ b/packages/file-server/package.json @@ -43,4 +43,4 @@ "author": "Prosopo", "license": "Apache-2.0", "sideEffects": false -} \ No newline at end of file +} diff --git a/packages/procaptcha-bundle/package.json b/packages/procaptcha-bundle/package.json index 98cafcefee..06eb5353f6 100644 --- a/packages/procaptcha-bundle/package.json +++ b/packages/procaptcha-bundle/package.json @@ -65,4 +65,4 @@ "vite": "^5.1.7", "typescript": "^5.1.6" } -} \ No newline at end of file +} diff --git a/packages/procaptcha-common/package.json b/packages/procaptcha-common/package.json index 6074fd9be5..6237c9d22b 100644 --- a/packages/procaptcha-common/package.json +++ b/packages/procaptcha-common/package.json @@ -53,4 +53,4 @@ "publishConfig": { "registry": "https://registry.npmjs.org" } -} \ No newline at end of file +} diff --git a/packages/procaptcha-frictionless/package.json b/packages/procaptcha-frictionless/package.json index 31c710495f..019a47396a 100644 --- a/packages/procaptcha-frictionless/package.json +++ b/packages/procaptcha-frictionless/package.json @@ -57,4 +57,4 @@ "publishConfig": { "registry": "https://registry.npmjs.org" } -} \ No newline at end of file +} diff --git a/packages/procaptcha-pow/package.json b/packages/procaptcha-pow/package.json index 2fb031da59..051cb9d936 100644 --- a/packages/procaptcha-pow/package.json +++ b/packages/procaptcha-pow/package.json @@ -73,4 +73,4 @@ "publishConfig": { "registry": "https://registry.npmjs.org" } -} \ No newline at end of file +} diff --git a/packages/procaptcha-react/package.json b/packages/procaptcha-react/package.json index 7ab6b8fb55..92b3d1165a 100644 --- a/packages/procaptcha-react/package.json +++ b/packages/procaptcha-react/package.json @@ -71,4 +71,4 @@ "publishConfig": { "registry": "https://registry.npmjs.org" } -} \ No newline at end of file +} diff --git a/packages/procaptcha/package.json b/packages/procaptcha/package.json index 51bc0b6673..5c50737e0e 100644 --- a/packages/procaptcha/package.json +++ b/packages/procaptcha/package.json @@ -83,4 +83,4 @@ "registry": "https://registry.npmjs.org" }, "sideEffects": false -} \ No newline at end of file +} diff --git a/packages/provider/package.json b/packages/provider/package.json index e7e121fc66..93ec6142f6 100644 --- a/packages/provider/package.json +++ b/packages/provider/package.json @@ -85,4 +85,4 @@ }, "homepage": "https://github.com/prosopo/captcha#readme", "sideEffects": false -} \ No newline at end of file +} diff --git a/packages/server/package.json b/packages/server/package.json index 56437f22d8..1081d9225e 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -52,4 +52,4 @@ "tslib": "2.6.2", "typescript": "5.1.6" } -} \ No newline at end of file +} diff --git a/packages/tx/package.json b/packages/tx/package.json index 47998e7d1c..96312ebd25 100644 --- a/packages/tx/package.json +++ b/packages/tx/package.json @@ -64,4 +64,4 @@ }, "description": "", "sideEffects": false -} \ No newline at end of file +} diff --git a/packages/types-database/package.json b/packages/types-database/package.json index 886f89b3ec..f5b07240f1 100644 --- a/packages/types-database/package.json +++ b/packages/types-database/package.json @@ -49,4 +49,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} \ No newline at end of file +} diff --git a/packages/types-env/package.json b/packages/types-env/package.json index 3111da0c04..554c1ad40f 100644 --- a/packages/types-env/package.json +++ b/packages/types-env/package.json @@ -50,4 +50,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} \ No newline at end of file +} diff --git a/packages/types/package.json b/packages/types/package.json index bc1b0aa616..03b26a752e 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -54,4 +54,4 @@ "typescript": "5.1.6" }, "sideEffects": false -} \ No newline at end of file +} diff --git a/packages/util/package.json b/packages/util/package.json index 11ad080a9e..00f06c65b4 100644 --- a/packages/util/package.json +++ b/packages/util/package.json @@ -65,4 +65,4 @@ }, "description": "Utility package to house all code that is not specific to prosopo. E.g. random number generation, string manipulation, etc.", "sideEffects": false -} \ No newline at end of file +} diff --git a/packages/web-components/package.json b/packages/web-components/package.json index 8fa20321f9..db68ea61cc 100644 --- a/packages/web-components/package.json +++ b/packages/web-components/package.json @@ -47,4 +47,4 @@ "@prosopo/config": "0.3.41" }, "sideEffects": false -} \ No newline at end of file +} diff --git a/protocol/dev/package.json b/protocol/dev/package.json index 2bc8753cd6..fb00c246bd 100644 --- a/protocol/dev/package.json +++ b/protocol/dev/package.json @@ -43,4 +43,4 @@ "typescript": "5.1.6" }, "private": true -} \ No newline at end of file +} diff --git a/provider-gui/package.json b/provider-gui/package.json index 34738b82f6..d027aad18a 100644 --- a/provider-gui/package.json +++ b/provider-gui/package.json @@ -63,4 +63,4 @@ "typescript": "5.1.6", "utf-8-validate": "5.0.2" } -} \ No newline at end of file +}