@kimafinance/kima-transaction-widget 1.5.2 → 1.5.3

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 (1) hide show
  1. package/package.json +6 -12
package/package.json CHANGED
@@ -1,34 +1,28 @@
1
1
  {
2
2
  "name": "@kimafinance/kima-transaction-widget",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "Kima Transaction Widget",
5
5
  "author": "",
6
6
  "license": "MIT",
7
7
  "repository": "https://github.com/kima-finance/kima-transaction-widget",
8
8
  "main": "dist/index.cjs",
9
9
  "module": "dist/index.js",
10
- "types": "dist/types/index.d.ts",
10
+ "types": "dist/index.d.ts",
11
11
  "type": "module",
12
12
  "source": "src/index.tsx",
13
13
  "exports": {
14
14
  ".": {
15
- "require": "./dist/index.cjs",
16
- "types": "./dist/types/index.d.ts",
17
- "import": "./dist/index.js"
18
- },
19
- "./*": {
20
- "require": "./dist/*.cjs",
21
- "types": "./dist/types/*.d.ts",
22
- "import": "./dist/*.js"
15
+ "types": "./dist/index.d.ts",
16
+ "import": "./dist/index.js",
17
+ "require": "./dist/index.cjs"
23
18
  },
24
19
  "./index.css": {
25
20
  "default": "./dist/index.css"
26
21
  }
27
22
  },
28
23
  "scripts": {
29
- "build": "npm run build:types && npm run build:tsup && npm run build:sass && npm run move:fonts",
24
+ "build": "npm run build:tsup && npm run build:sass && npm run move:fonts",
30
25
  "build:sass": "sass src/styles/main.scss dist/index.css",
31
- "build:types": "tsc -p tsconfig.json --emitDeclarationOnly --declaration --declarationMap --outDir dist/types",
32
26
  "build:tsup": "tsup",
33
27
  "move:fonts": "mkdir -p dist/fonts && find dist -maxdepth 1 -type f \\( -iname '*.woff' -o -iname '*.woff2' -o -iname '*.eot' -o -iname '*.ttf' -o -iname '*.otf' \\) -exec mv {} dist/fonts/ \\;",
34
28
  "dev": "tsup --watch",