Files
orbitdb/package.json
2022-12-30 03:07:01 +00:00

123 lines
4.7 KiB
JSON

{
"name": "orbit-db",
"version": "0.28.7",
"description": "Distributed p2p database on IPFS",
"author": "Haad",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/orbitdb/orbit-db"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"src",
"dist"
],
"type": "module",
"main": "src/OrbitDB.js",
"dependencies": {
"ipfs-pubsub-1on1": "github:haydenyoung/ipfs-pubsub-1on1#esm",
"is-node": "^1.0.2",
"localstorage-down": "^0.6.7",
"logplease": "^1.2.14",
"multihashes": "~3.0.1",
"orbit-db-access-controllers": "github:haydenyoung/orbit-db-access-controllers#esm",
"orbit-db-cache": "github:haydenyoung/orbit-db-cache#esm",
"orbit-db-counterstore": "github:haydenyoung/orbit-db-counterstore#esm",
"orbit-db-docstore": "github:haydenyoung/orbit-db-docstore#esm",
"orbit-db-eventstore": "github:haydenyoung/orbit-db-eventstore#esm",
"orbit-db-feedstore": "github:haydenyoung/orbit-db-feedstore#esm",
"orbit-db-identity-provider": "github:haydenyoung/orbit-db-identity-provider#esm",
"orbit-db-io": "github:haydenyoung/orbit-db-io#esm",
"orbit-db-keystore": "github:haydenyoung/orbit-db-keystore#esm",
"orbit-db-kvstore": "github:haydenyoung/orbit-db-kvstore#esm",
"orbit-db-pubsub": "github:haydenyoung/orbit-db-pubsub#esm",
"orbit-db-storage-adapter": "github:haydenyoung/orbit-db-storage-adapter#esm",
"orbit-db-store": "github:haydenyoung/orbit-db-store#esm",
"wherearewe": "^1.0.2"
},
"devDependencies": {
"adm-zip": "^0.4.16",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chromium": "^3.0.3",
"cpy-cli": "^3.1.1",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"fs-extra": "^9.0.1",
"ganache-cli": "^6.12.2",
"go-ipfs": "^0.9.1",
"ipfs": "^0.59.0",
"ipfsd-ctl": "^10.0.3",
"localstorage-level-migration": "github:haydenyoung/localstorage-level-migration#esm",
"markdown-toc": "^1.2.0",
"mkdirp": "^1.0.4",
"mocha": "^9.1.3",
"node-pre-gyp": "^0.13.0",
"open-cli": "^6.0.1",
"orbit-db-test-utils": "^1.3.0",
"p-each-series": "^2.1.0",
"p-map": "^4.0.0",
"p-map-series": "^2.1.0",
"p-whilst": "^2.1.0",
"pify": "^5.0.0",
"puppeteer-core": "^13.4.0",
"remark-cli": "^8.0.1",
"remark-validate-links": "^10.0.2",
"rimraf": "^3.0.2",
"standard": "^17.0.0",
"validate-maintainers": "^1.2.2",
"web3": "^1.5.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"scripts": {
"examples:eventlog": "node examples/eventlog.js",
"examples:keyvalue": "node examples/keyvalue.js",
"examples:browser": "open-cli examples/browser/browser.html",
"examples:browser-webpack": "open-cli examples/browser/browser-webpack-example/index.html",
"lint:docs": "remark -qf -u validate-links .",
"test:all": "npm run test:browser-multiple-tabs && npm run test",
"test": "cross-env TEST=all mocha --config test/.mocharc.json",
"test:browser-multiple-tabs": "npm run build:dist && cpy dist/orbitdb.min.js ./test/browser --rename=orbitdb.js && cpy node_modules/ipfs/index.min.js ./test/browser --rename=ipfs.js && cpy node_modules/orbit-db-identity-provider/dist/index-browser.min.js ./test/browser --rename=identities.js && cpy node_modules/ipfs-log/dist/ipfslog.min.js ./test/browser && mocha ./test/browser/concurrent.spec.js",
"build": "npm run build:es5 && npm run build:debug && npm run build:dist && npm run build:examples && npm run build:docs/toc",
"build:examples": "webpack --config conf/webpack.example.config.js --sort-modules-by size",
"build:dist": "webpack --config conf/webpack.config.js --sort-modules-by size",
"build:debug": "webpack --config conf/webpack.debug.config.js --sort-modules-by size",
"build:docs/toc": "markdown-toc --no-first1 -i README.md && markdown-toc --no-first1 -i API.md && markdown-toc --no-first1 -i GUIDE.md && markdown-toc --no-first1 -i CHANGELOG.md && markdown-toc --no-first1 -i FAQ.md ",
"build:es5": "babel src --out-dir ./dist/es5/ --presets babel-preset-env --plugins babel-plugin-transform-runtime",
"prepublishOnly": "npm run build",
"lint": "standard --env=mocha",
"lint:fix": "standard --fix"
},
"standard": {
"env": "mocha",
"ignore": [
"test/**",
"examples/**",
"benchmarks/**"
]
},
"localMaintainers": [
"haad <haad@haja.io>",
"shamb0t <shams@haja.io>",
"hajamark <mark@haja.io>"
],
"keywords": [
"crdt",
"database",
"decentralized",
"decentralised",
"distributed",
"ipfs",
"p2p",
"peer-to-peer"
]
}