mirror of
https://github.com/zhigang1992/connect.git
synced 2026-01-13 09:00:27 +08:00
- @stacks/app@2.0.3 - @stacks/connect-react@3.0.3 - @stacks/connect-ui@3.0.3 - @stacks/connect@5.0.3 - @stacks/rpc-client@1.0.3 - test-app@2.0.3
70 lines
2.0 KiB
JSON
70 lines
2.0 KiB
JSON
{
|
|
"name": "@stacks/connect-react",
|
|
"version": "3.0.3",
|
|
"scripts": {
|
|
"build": "yarn build:modules",
|
|
"build:modules": "tsdx build --format cjs,esm,umd",
|
|
"dev": "cd ../test-app && yarn start",
|
|
"lint": "yarn lint:eslint && yarn lint:prettier",
|
|
"lint:eslint": "eslint \"src/**/*.{ts,tsx}\"",
|
|
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
|
|
"lint:prettier": "prettier --check \"src/**/*.{ts,tsx}\" *.js",
|
|
"lint:prettier:fix": "prettier --write \"src/**/*.{ts,tsx}\" *.js",
|
|
"prepublishOnly": "yarn build",
|
|
"start": "tsdx watch",
|
|
"test": "tsdx test",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"prettier": "@blockstack/prettier-config",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"sideEffects": false,
|
|
"typings": "dist/connect-react/src/index.d.ts",
|
|
"bundlesize": [
|
|
{
|
|
"path": "./dist/**/*.js",
|
|
"maxSize": "9 kB"
|
|
}
|
|
],
|
|
"dependencies": {
|
|
"@stacks/auth": "^1.0.2",
|
|
"@stacks/connect": "^5.0.3",
|
|
"jsontokens": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/helper-validator-identifier": "^7.9.5",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
|
|
"@babel/preset-react": "^7.9.4",
|
|
"@babel/preset-typescript": "^7.9.0",
|
|
"@blockstack/eslint-config": "^1.0.3",
|
|
"@blockstack/prettier-config": "^0.0.6",
|
|
"@types/jest": "^25.2.1",
|
|
"@types/react-dom": "^16.9.6",
|
|
"@types/styled-components": "^5.1.0",
|
|
"babel-loader": "^8.1.0",
|
|
"bundlesize": "^0.18.0",
|
|
"husky": "^4.2.1",
|
|
"prettier": "^2.0.5",
|
|
"react": "^16.13.1",
|
|
"react-dom": "^16.13.1",
|
|
"rollup-plugin-peer-deps-external": "^2.2.2",
|
|
"terser-webpack-plugin": "^2.3.5",
|
|
"tsdx": "^0.14.1",
|
|
"tslib": "^1.10.0",
|
|
"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/connect-react.esm.js",
|
|
"peerDependencies": {
|
|
"react": "^16.13.1",
|
|
"react-dom": "^16.13.1"
|
|
}
|
|
}
|