@stacks/storage 4.2.0-beta.1 → 4.2.0-beta.4

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 +22 -21
package/package.json CHANGED
@@ -1,40 +1,30 @@
1
1
  {
2
2
  "name": "@stacks/storage",
3
- "version": "4.2.0-beta.1",
3
+ "version": "4.2.0-beta.4",
4
4
  "description": "Stacks storage library",
5
- "author": "yknl <yukanliao@gmail.com>",
6
- "homepage": "https://blockstack.org",
7
- "license": "GPL-3.0-or-later",
8
- "files": [
9
- "dist",
10
- "src"
11
- ],
12
- "repository": {
13
- "type": "git",
14
- "url": "git+https://github.com/blockstack/blockstack.js.git"
15
- },
5
+ "license": "MIT",
6
+ "author": "Hiro Systems PBC (https://hiro.so)",
7
+ "homepage": "https://www.hiro.so/stacks-js",
16
8
  "scripts": {
17
- "start": "tsc -b tsconfig.build.json --watch --verbose",
18
9
  "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:polyfill",
19
10
  "build:cjs": "tsc -b tsconfig.build.json",
20
11
  "build:esm": "tsc -p tsconfig.build.json --module ES6 --outDir ./dist/esm",
21
- "build:umd": "NODE_OPTIONS=--max-old-space-size=8192 webpack --config webpack.config.js",
22
12
  "build:polyfill": "NODE_OPTIONS=--max-old-space-size=8192 rollup -c ../../configs/rollup.config.js && rimraf dist/polyfill/dist",
13
+ "build:umd": "NODE_OPTIONS=--max-old-space-size=8192 webpack --config webpack.config.js",
23
14
  "clean": "rimraf dist && tsc -b tsconfig.build.json --clean",
24
- "typecheck": "tsc --noEmit",
25
- "typecheck:watch": "npm run typecheck -- --watch",
26
15
  "pack": "npm pack",
27
16
  "prepublishOnly": "npm run test && NODE_ENV=production npm run build",
17
+ "start": "tsc -b tsconfig.build.json --watch --verbose",
28
18
  "test": "jest",
29
- "test:watch": "jest --watch --coverage=false"
30
- },
31
- "bugs": {
32
- "url": "https://github.com/blockstack/blockstack.js/issues"
19
+ "test:watch": "jest --watch --coverage=false",
20
+ "typecheck": "tsc --noEmit",
21
+ "typecheck:watch": "npm run typecheck -- --watch"
33
22
  },
34
23
  "dependencies": {
35
24
  "@stacks/auth": "^4.1.0",
36
25
  "@stacks/common": "^4.1.0",
37
26
  "@stacks/encryption": "^4.1.0",
27
+ "@stacks/network": "^4.1.0",
38
28
  "jsontokens": "^3.0.0"
39
29
  },
40
30
  "devDependencies": {
@@ -62,5 +52,16 @@
62
52
  "browser": "dist/polyfill/index.js",
63
53
  "umd:main": "dist/umd/index.js",
64
54
  "unpkg": "dist/umd/index.js",
65
- "gitHead": "5af0b92b25dd03451d3b7f426685fe35b84a9168"
55
+ "files": [
56
+ "dist",
57
+ "src"
58
+ ],
59
+ "repository": {
60
+ "type": "git",
61
+ "url": "git+https://github.com/hirosystems/stacks.js.git"
62
+ },
63
+ "bugs": {
64
+ "url": "https://github.com/blockstack/blockstack.js/issues"
65
+ },
66
+ "gitHead": "e5e9d2a43ea14439d3d76b15df5da07ca5209c0e"
66
67
  }