@monerium/sdk 2.12.0 → 2.13.0

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.
package/package.json CHANGED
@@ -1,40 +1,54 @@
1
1
  {
2
2
  "name": "@monerium/sdk",
3
- "version": "2.12.0",
4
- "description": "Everything you need to interact with the Monerium API - an electronic money issuer.",
5
- "license": "MIT",
3
+ "version": "2.13.0",
4
+ "description": "Essential tools to interact with the Monerium API, an electronic money issuer.",
6
5
  "repository": {
7
6
  "type": "git",
8
- "url": "git+https://github.com/monerium/js-sdk.git"
7
+ "url": "git+https://github.com/monerium/js-monorepo.git",
8
+ "directory": "packages/sdk"
9
9
  },
10
10
  "bugs": {
11
- "url": "https://github.com/monerium/js-sdk/issues"
11
+ "url": "https://github.com/monerium/js-monorepo/issues"
12
12
  },
13
13
  "main": "./dist/index.js",
14
14
  "module": "./dist/index.mjs",
15
- "typings": "./dist/index.d.ts",
15
+ "types": "./dist/index.d.ts",
16
16
  "exports": {
17
17
  ".": {
18
+ "types": "./dist/index.d.ts",
18
19
  "import": "./dist/index.mjs",
19
20
  "require": "./dist/index.js"
20
21
  }
21
22
  },
22
23
  "files": [
23
- "dist"
24
+ "dist/index.js",
25
+ "dist/index.mjs",
26
+ "dist/index.d.ts"
24
27
  ],
25
- "engines": {
26
- "node": ">= 16.15"
27
- },
28
28
  "dependencies": {
29
29
  "crypto-js": "^4.2.0"
30
30
  },
31
- "scripts": {
32
- "docs": "yarn typedoc --options docs/typedoc.json && node docs/editStatic.js",
33
- "docs:watch": "nodemon --watch . --ignore static -e ts,css,md --exec 'typedoc --options docs/typedoc.json && node docs/editStatic.js'"
34
- },
35
31
  "devDependencies": {
36
- "nodemon": "3.0.1",
37
- "typedoc": "0.23.23",
38
- "typedoc-theme-hierarchy": "^3.2.1"
32
+ "@types/crypto-js": "^4.2.2",
33
+ "jest-fetch-mock": "^3.0.3",
34
+ "jest-localstorage-mock": "^2.4.26",
35
+ "timezone-mock": "^1.3.6",
36
+ "typedoc": "^0.25.13",
37
+ "typedoc-plugin-markdown": "^4.0.3",
38
+ "typescript": "latest"
39
+ },
40
+ "engines": {
41
+ "node": ">= 16.15"
42
+ },
43
+ "scripts": {
44
+ "dev": "tsup --watch --onSuccess 'pnpm type-map && pnpm run docs'",
45
+ "build": "tsup",
46
+ "docs": "typedoc",
47
+ "docs:watch": "typedoc --watch",
48
+ "type-map": "tsc --emitDeclarationOnly --declaration",
49
+ "lint": "eslint . --fix",
50
+ "pub:pre": "pnpm publish --no-git-checks --dry-run",
51
+ "test": "jest",
52
+ "test:watch": "jest --watch"
39
53
  }
40
- }
54
+ }