Files
connect/package.json
Thomas Osmonson c5c679f496 build: v1.0.9
2020-02-21 15:28:08 -06:00

86 lines
2.5 KiB
JSON

{
"name": "@blockstack/connect",
"version": "1.0.9",
"bundlesize": [
{
"path": "./dist/**/*.js",
"maxSize": "9 kB"
}
],
"dependencies": {
"@blockstack/ui": "^1.0.0-alpha.37",
"preact": "^10.3.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"styled-components": "^5.0.1",
"use-events": "^1.4.1",
"use-onclickoutside": "^0.3.1"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@blockstack/prettier-config": "^0.0.5",
"@types/jest": "^25.1.0",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"babel-loader": "^8.0.6",
"blockstack": "^19.3.0",
"bundlesize": "^0.18.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"husky": "^4.2.1",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"terser-webpack-plugin": "^2.3.5",
"tsdx": "^0.12.3",
"tslib": "^1.10.0",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10"
},
"files": [
"dist"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/auth.esm.js",
"peerDependencies": {
"@blockstack/ui": "^1.0.0-alpha.34",
"blockstack": "^19",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"styled-components": "^5.0.1",
"use-events": "^1.4.1",
"use-onclickoutside": "^0.3.1"
},
"prettier": "@blockstack/prettier-config",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdx build --format cjs,esm,umd && yarn build:web",
"build:web": "NODE_ENV=production webpack --mode=production",
"build:web:analyze": "NODE_ENV=production ANALYZE=true webpack --mode=production",
"dev": "cd test-app && yarn start",
"lint": "eslint --ext .ts,.tsx ./src/ -f unix",
"lint:fix": "eslint --ext .ts,.tsx ./src/ -f unix --fix",
"prepublishOnly": "yarn build",
"start": "tsdx watch",
"test": "tsdx test",
"typecheck": "tsc --noEmit"
},
"sideEffects": false,
"typings": "dist/index.d.ts",
"unpkg": "dist/bundle.js"
}