@prosopo/env 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +12 -12
  2. package/typedoc.config.js +0 -19
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@prosopo/env",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Path env prosopo environment",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
7
7
  "engines": {
8
- "node": ">=18",
8
+ "node": ">=20",
9
9
  "npm": ">=9"
10
10
  },
11
11
  "exports": {
@@ -19,9 +19,9 @@
19
19
  "clean": "tsc --build --clean",
20
20
  "build": "tsc --build --verbose tsconfig.json",
21
21
  "build:cjs": "npx vite --config vite.cjs.config.ts build",
22
- "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet",
22
+ "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet",
23
23
  "eslint:fix": "npm run eslint -- --fix",
24
- "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore",
24
+ "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore",
25
25
  "prettier:fix": "npm run prettier -- --write",
26
26
  "lint": "npm run eslint && npm run prettier",
27
27
  "lint:fix": "npm run eslint:fix && npm run prettier:fix"
@@ -32,14 +32,14 @@
32
32
  "@polkadot/rpc-provider": "10.13.1",
33
33
  "@polkadot/util": "12.6.2",
34
34
  "@polkadot/util-crypto": "12.6.2",
35
- "@prosopo/captcha-contract": "1.0.1",
36
- "@prosopo/common": "1.0.1",
37
- "@prosopo/contract": "1.0.1",
38
- "@prosopo/database": "1.0.1",
39
- "@prosopo/types": "1.0.1",
40
- "@prosopo/types-database": "1.0.1",
41
- "@prosopo/types-env": "1.0.1",
42
- "@prosopo/util": "1.0.1"
35
+ "@prosopo/captcha-contract": "1.0.2",
36
+ "@prosopo/common": "1.0.2",
37
+ "@prosopo/contract": "1.0.2",
38
+ "@prosopo/database": "1.0.2",
39
+ "@prosopo/types": "1.0.2",
40
+ "@prosopo/types-database": "1.0.2",
41
+ "@prosopo/types-env": "1.0.2",
42
+ "@prosopo/util": "1.0.2"
43
43
  },
44
44
  "overrides": {
45
45
  "@polkadot/keyring": "12.6.2"
package/typedoc.config.js DELETED
@@ -1,19 +0,0 @@
1
- // Copyright 2021-2024 Prosopo (UK) Ltd.
2
- //
3
- // Licensed under the Apache License, Version 2.0 (the "License");
4
- // you may not use this file except in compliance with the License.
5
- // You may obtain a copy of the License at
6
- //
7
- // http://www.apache.org/licenses/LICENSE-2.0
8
- //
9
- // Unless required by applicable law or agreed to in writing, software
10
- // distributed under the License is distributed on an "AS IS" BASIS,
11
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- // See the License for the specific language governing permissions and
13
- // limitations under the License.
14
- export default {
15
- entryPoints: ['src/**/*.ts', 'src/**/*.tsx', 'src/**/*.js', 'src/**/*.jsx', 'src/**/*.json'],
16
- includes: 'src',
17
- extends: '../../typedoc.base.config.js',
18
- readme: 'README.md',
19
- }