@exodus/walletconnect-keyvaluestorage
Version:
Isomorphic Key-Value Storage
83 lines (82 loc) • 2.25 kB
JSON
{
"name": "@exodus/walletconnect-keyvaluestorage",
"description": "Isomorphic Key-Value Storage",
"version": "1.0.2-exodus.2",
"author": "WalletConnect, Inc. <walletconnect.com>",
"license": "MIT",
"keywords": [
"iso",
"isomorphic",
"store",
"storage",
"localstorage",
"asyncstorage",
"sequelize"
],
"files": [
"dist/cjs"
],
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"react-native": "dist/cjs/react-native/index.js",
"homepage": "https://github.com/walletconnect/walletconnect-utils",
"repository": {
"type": "git",
"url": "git+https://github.com/walletconnect/walletconnect-utils.git"
},
"bugs": {
"url": "https://github.com/walletconnect/walletconnect-utils/issues"
},
"scripts": {
"clean": "rm -rf dist",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:umd": "webpack",
"build": "run-s clean build:cjs",
"test": "rm -rf ./test/dbs/* && env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts",
"npm-publish:latest": "npm publish --access public --tag latest",
"npm-publish:canary": "npm publish --access public --tag canary",
"prepublishOnly": "npm run test && npm run build"
},
"dependencies": {
"@exodus/walletconnect-safe-json": "^1.0.2-exodus.0",
"tslib": "1.14.1"
},
"peerDependencies": {
"lokijs": "1.x"
},
"peerDependenciesMeta": {
"lokijs": {
"optional": true
}
},
"devDependencies": {
"@exodus/walletconnect-time": "^1.0.2-exodus.0",
"@exodus/react-native-async-storage": "^1.17.11-exodus.4",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"chai": "^4.3.6",
"classic-level": "^1.2.0",
"deepmerge": "^4.2.2",
"eslint": "^8.23.1",
"husky": "^4.3.0",
"lokijs": "^1.5.12",
"mocha": "^10.0.0",
"proxyquire": "^2.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"husky": {
"hooks": {
"pre-commit": "run-s lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"trailingComma": "es5"
}
}