UNPKG

1.63 kBJSONView Raw
1{
2 "name": "@stacks/common",
3 "version": "6.13.0",
4 "description": "Common Stacks utilities",
5 "license": "MIT",
6 "author": "Hiro Systems PBC (https://hiro.so)",
7 "homepage": "https://hiro.so/stacks-js",
8 "scripts": {
9 "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:umd",
10 "build:cjs": "tsc -b tsconfig.build.json",
11 "build:esm": "tsc -p tsconfig.build.json --module ES6 --outDir ./dist/esm",
12 "build:umd": "NODE_OPTIONS=--max-old-space-size=8192 webpack --config webpack.config.js",
13 "clean": "rimraf dist && tsc -b tsconfig.build.json --clean",
14 "pack": "npm pack",
15 "prepublishOnly": "npm run test && NODE_ENV=production npm run build",
16 "start": "tsc -b tsconfig.build.json --watch --verbose",
17 "test": "jest",
18 "test:watch": "jest --watch --coverage=false",
19 "typecheck": "tsc --noEmit",
20 "typecheck:watch": "npm run typecheck -- --watch"
21 },
22 "dependencies": {
23 "@types/bn.js": "^5.1.0",
24 "@types/node": "^18.0.4"
25 },
26 "devDependencies": {
27 "bn.js": "^5.2.1",
28 "process": "^0.11.10",
29 "rimraf": "^3.0.2"
30 },
31 "sideEffects": false,
32 "publishConfig": {
33 "access": "public"
34 },
35 "typings": "dist/index.d.ts",
36 "main": "dist/index.js",
37 "module": "dist/esm/index.js",
38 "umd:main": "dist/umd/index.js",
39 "unpkg": "dist/umd/index.js",
40 "files": [
41 "dist",
42 "src"
43 ],
44 "repository": {
45 "type": "git",
46 "url": "git+https://github.com/hirosystems/stacks.js.git"
47 },
48 "bugs": {
49 "url": "https://github.com/blockstack/blockstack.js/issues"
50 },
51 "gitHead": "6a85286df3e28bcb95cbfb403f28519d215693ca"
52}