@nlabs/arkhamjs-storage-browser 3.26.1 → 3.28.1

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/README.md +3 -9
  2. package/package.json +10 -9
package/README.md CHANGED
@@ -8,20 +8,14 @@
8
8
  [![MIT license](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](http://opensource.org/licenses/MIT)
9
9
  [![Chat](https://img.shields.io/discord/446122412715802649.svg)](https://discord.gg/Ttgev58)
10
10
 
11
- ### Installation
11
+ ## Installation
12
12
 
13
13
  Using [npm](https://www.npmjs.com/):
14
14
 
15
15
  ```shell
16
- npm install --save @nlabs/arkhamjs-storage-browser
16
+ npm i --save @nlabs/arkhamjs-storage-browser
17
17
  ```
18
18
 
19
- or
20
-
21
- ```shell
22
- yarn add @nlabs/arkhamjs-storage-browser
23
- ```
24
-
25
- #### Documentation
19
+ ## Documentation
26
20
 
27
21
  For detailed [Documentation](https://arkhamjs.io) and additional options.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nlabs/arkhamjs-storage-browser",
3
- "version": "3.26.1",
3
+ "version": "3.28.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -31,27 +31,28 @@
31
31
  "url": "https://github.com/nitrogenlabs/arkhamjs/issues"
32
32
  },
33
33
  "scripts": {
34
- "build": "lex compile -r",
34
+ "build": "lex compile --remove",
35
35
  "clean": "lex clean",
36
36
  "lint": "eslint ./src --ext .ts,.tsx",
37
37
  "prepublishOnly": "npm run build",
38
- "pretest": "npm run lint",
39
38
  "publish:major": "npm version major && npm publish",
40
39
  "publish:minor": "npm version minor && npm publish",
41
40
  "publish:patch": "npm version patch && npm publish",
41
+ "pretest": "npm run lint",
42
+ "reset": "lex clean",
42
43
  "test": "lex test",
43
- "update": "lex update -i"
44
+ "update": "npm-check-updates --interactive"
44
45
  },
45
46
  "peerDependencies": {
46
47
  "@nlabs/arkhamjs": "^3.23"
47
48
  },
48
49
  "devDependencies": {
49
- "@nlabs/arkhamjs": "^3.25.0",
50
- "@types/jest": "^29.5.1",
51
- "@types/node": "^20.2.1",
52
- "eslint": "^8.40.0",
50
+ "@nlabs/arkhamjs": "^3.26.2",
51
+ "@types/jest": "^29.5.14",
52
+ "@types/node": "^22.13.1",
53
+ "eslint": "^9.19.0",
53
54
  "eslint-config-styleguidejs": "^3.2.1",
54
- "typescript": "^5.0.4"
55
+ "typescript": "^5.7.3"
55
56
  },
56
57
  "gitHead": "fc371e1e28fe0ae35d40d29a217d5f0e990ec32a"
57
58
  }