UNPKG

2.22 kBJSONView Raw
1{
2 "name": "@stacks/storage",
3 "version": "4.0.2",
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 },
16 "scripts": {
17 "start": "tsc -b tsconfig.build.json --watch --verbose",
18 "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:polyfill",
19 "build:cjs": "tsc -b tsconfig.build.json",
20 "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 "build:polyfill": "NODE_OPTIONS=--max-old-space-size=8192 rollup -c ../../configs/rollup.config.js && rimraf dist/polyfill/dist",
23 "clean": "rimraf dist && tsc -b tsconfig.build.json --clean",
24 "typecheck": "tsc --noEmit",
25 "typecheck:watch": "npm run typecheck -- --watch",
26 "pack": "npm pack",
27 "prepublishOnly": "npm run test && NODE_ENV=production npm run build",
28 "test": "jest",
29 "test:watch": "jest --watch --coverage=false"
30 },
31 "bugs": {
32 "url": "https://github.com/blockstack/blockstack.js/issues"
33 },
34 "dependencies": {
35 "@stacks/auth": "^4.0.2",
36 "@stacks/common": "^4.0.2",
37 "@stacks/encryption": "^4.0.2",
38 "jsontokens": "^3.0.0"
39 },
40 "devDependencies": {
41 "@types/jest": "^26.0.22",
42 "@types/jsdom": "^16.2.10",
43 "jest": "^26.6.3",
44 "jest-fetch-mock": "^3.0.3",
45 "jest-module-name-mapper": "^0.1.5",
46 "jsdom": "^16.5.3",
47 "process": "^0.11.10",
48 "rimraf": "^3.0.2",
49 "stream-browserify": "^3.0.0",
50 "ts-jest": "^26.5.5",
51 "ts-loader": "^9.1.1",
52 "typescript": "^4.2.4",
53 "webpack": "^5.36.1",
54 "webpack-bundle-analyzer": "^4.5.0",
55 "webpack-cli": "^4.6.0"
56 },
57 "sideEffects": false,
58 "typings": "dist/index.d.ts",
59 "main": "dist/index.js",
60 "module": "dist/esm/index.js",
61 "browser": "dist/polyfill/index.js",
62 "umd:main": "dist/umd/index.js",
63 "unpkg": "dist/umd/index.js",
64 "gitHead": "32c7d76ff05b7eb97c56872ba0dfad22a9d7bc9e"
65}