@interchain-kit/phantom-extension 0.7.0 → 0.10.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.
Files changed (2) hide show
  1. package/README.md +7 -5
  2. package/package.json +11 -9
package/README.md CHANGED
@@ -30,19 +30,21 @@ npm install phantom-extension
30
30
  When first cloning the repo:
31
31
 
32
32
  ```sh
33
- yarn
33
+ pnpm
34
34
  # build the prod packages. When devs would like to navigate to the source code, this will only navigate from references to their definitions (.d.ts files) between packages.
35
- yarn build
35
+ pnpm build
36
36
  ```
37
37
 
38
38
  Or if you want to make your dev process smoother, you can run:
39
39
 
40
40
  ```sh
41
- yarn
41
+ pnpm
42
42
  # build the dev packages with .map files, this enables navigation from references to their source code between packages.
43
- yarn build:dev
43
+ pnpm build:dev
44
44
  ```
45
45
 
46
+ ---
47
+
46
48
  ## Interchain JavaScript Stack
47
49
 
48
50
  A unified toolkit for building applications and smart contracts in the Interchain ecosystem ⚛️
@@ -65,6 +67,6 @@ A unified toolkit for building applications and smart contracts in the Interchai
65
67
 
66
68
  ## Disclaimer
67
69
 
68
- AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED AS IS”, AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
70
+ AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
69
71
 
70
72
  No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@interchain-kit/phantom-extension",
3
- "version": "0.7.0",
3
+ "version": "0.10.0",
4
4
  "author": "Constructive <developers@constructive.io>",
5
5
  "description": "interchain-kit wallet connector",
6
6
  "main": "index.js",
7
7
  "module": "esm/index.js",
8
8
  "types": "index.d.ts",
9
9
  "homepage": "https://github.com/interchain-kit/phantom-extension",
10
- "license": "SEE LICENSE IN LICENSE",
10
+ "license": "MIT",
11
11
  "publishConfig": {
12
12
  "access": "public",
13
13
  "directory": "dist"
@@ -20,19 +20,21 @@
20
20
  "url": "https://github.com/interchain-kit/phantom-extension/issues"
21
21
  },
22
22
  "scripts": {
23
- "copy": "copyfiles -f ../../LICENSE README.md package.json dist",
24
- "clean": "rimraf dist/**",
25
- "prepare": "npm run build",
26
- "build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
23
+ "clean": "makage clean",
24
+ "build": "makage build",
27
25
  "build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
28
26
  "lint": "eslint . --fix",
29
27
  "test": "jest",
30
28
  "test:watch": "jest --watch",
31
- "watch:dev": "tsc -w -p tsconfig.esm.json & tsc -w"
29
+ "watch:dev": "tsc -w -p tsconfig.esm.json & tsc -w",
30
+ "prepack": "npm run build"
32
31
  },
33
32
  "keywords": [],
34
33
  "dependencies": {
35
- "@interchain-kit/core": "^0.7.0"
34
+ "@interchain-kit/core": "0.10.0"
36
35
  },
37
- "gitHead": "83422c6b3681b6fc44bff6871249c639bffaa7be"
36
+ "devDependencies": {
37
+ "makage": "^0.1.12"
38
+ },
39
+ "gitHead": "dcdabc86f80ea1be9a25919b755fd8b2b9b931b2"
38
40
  }