mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-06-25 15:32:30 +00:00
commit
c09e045581
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,9 +1,6 @@
|
|||||||
# Don't distribute the dependencies
|
# Don't distribute the dependencies
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
||||||
# Don't track code coverage reports
|
|
||||||
coverage/
|
|
||||||
|
|
||||||
#Don't track ipfs files
|
#Don't track ipfs files
|
||||||
test/ipfs/
|
test/ipfs/
|
||||||
test/browser/ipfs/
|
test/browser/ipfs/
|
||||||
|
13
.npmignore
13
.npmignore
@ -10,19 +10,10 @@ dist/*.map
|
|||||||
# Don't distribute the debug build
|
# Don't distribute the debug build
|
||||||
dist/orbitdb.js
|
dist/orbitdb.js
|
||||||
|
|
||||||
# Don't distribute screenshot
|
|
||||||
# See examples at https://github.com/orbitdb/orbit-db
|
|
||||||
images/
|
|
||||||
|
|
||||||
.git
|
.git
|
||||||
.circleci
|
|
||||||
benchmarks
|
benchmarks
|
||||||
test
|
test
|
||||||
ipfs
|
|
||||||
docker
|
|
||||||
conf
|
conf
|
||||||
Makefile
|
Makefile
|
||||||
API.md
|
CONTRIBUTING.md
|
||||||
CHANGELOG.md
|
CODE_OF_CONDUCT.md
|
||||||
FAQ.md
|
|
||||||
GUIDE.md
|
|
||||||
|
3
Makefile
3
Makefile
@ -7,14 +7,13 @@ test: deps
|
|||||||
npm run test -- --exit
|
npm run test -- --exit
|
||||||
|
|
||||||
build: test
|
build: test
|
||||||
mkdir -p examples/browser/lib/
|
|
||||||
npm run build
|
npm run build
|
||||||
@echo "Build success!"
|
@echo "Build success!"
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf node_modules/
|
rm -rf node_modules/
|
||||||
rm -rf coverage/
|
|
||||||
rm -rf docs/api/
|
rm -rf docs/api/
|
||||||
|
rm -rf dist/
|
||||||
rm -f test/browser/bundle.js*
|
rm -f test/browser/bundle.js*
|
||||||
|
|
||||||
clean-dependencies: clean
|
clean-dependencies: clean
|
||||||
|
2674
package-lock.json
generated
2674
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
10
package.json
10
package.json
@ -9,7 +9,7 @@
|
|||||||
"url": "https://github.com/orbitdb/orbitdb"
|
"url": "https://github.com/orbitdb/orbitdb"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16.0.0"
|
"node": ">=20.0.0"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"src",
|
"src",
|
||||||
@ -29,8 +29,6 @@
|
|||||||
"uint8arrays": "^5.0.0"
|
"uint8arrays": "^5.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"assert": "^2.1.0",
|
|
||||||
"babel-loader": "^9.1.3",
|
|
||||||
"c8": "^8.0.1",
|
"c8": "^8.0.1",
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"fs-extra": "^11.2.0",
|
"fs-extra": "^11.2.0",
|
||||||
@ -38,7 +36,6 @@
|
|||||||
"it-all": "^3.0.4",
|
"it-all": "^3.0.4",
|
||||||
"jsdoc": "^4.0.2",
|
"jsdoc": "^4.0.2",
|
||||||
"mocha": "^10.2.0",
|
"mocha": "^10.2.0",
|
||||||
"open-cli": "^7.2.0",
|
|
||||||
"path-browserify": "^1.0.1",
|
"path-browserify": "^1.0.1",
|
||||||
"playwright-test": "^14.0.0",
|
"playwright-test": "^14.0.0",
|
||||||
"rimraf": "^5.0.5",
|
"rimraf": "^5.0.5",
|
||||||
@ -47,12 +44,10 @@
|
|||||||
"webpack-cli": "^5.1.4"
|
"webpack-cli": "^5.1.4"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"lint:docs": "remark -qf -u validate-links .",
|
|
||||||
"test:all": "npm run test:browser-multiple-tabs && npm run test",
|
|
||||||
"test": "cross-env mocha --config test/.mocharc.json",
|
"test": "cross-env mocha --config test/.mocharc.json",
|
||||||
"test:ci": "cross-env c8 mocha --config test/.mocharc.json",
|
"test:ci": "cross-env c8 mocha --config test/.mocharc.json",
|
||||||
"test:browser": "npm run build:tests && ./node_modules/.bin/playwright-test test/browser/bundle.js --runner mocha",
|
"test:browser": "npm run build:tests && ./node_modules/.bin/playwright-test test/browser/bundle.js --runner mocha",
|
||||||
"build": "npm run build:dist && npm run build:debug",
|
"build": "npm run build:docs && npm run build:dist && npm run build:debug",
|
||||||
"build:dist": "webpack --config conf/webpack.config.js",
|
"build:dist": "webpack --config conf/webpack.config.js",
|
||||||
"build:debug": "webpack --config conf/webpack.debug.config.js",
|
"build:debug": "webpack --config conf/webpack.debug.config.js",
|
||||||
"build:docs": "jsdoc -c ./conf/jsdoc/jsdoc.json -r src/** -d ./docs/api -R ./docs/jsdoc/README.md",
|
"build:docs": "jsdoc -c ./conf/jsdoc/jsdoc.json -r src/** -d ./docs/api -R ./docs/jsdoc/README.md",
|
||||||
@ -81,6 +76,7 @@
|
|||||||
"decentralised",
|
"decentralised",
|
||||||
"distributed",
|
"distributed",
|
||||||
"ipfs",
|
"ipfs",
|
||||||
|
"libp2p",
|
||||||
"p2p",
|
"p2p",
|
||||||
"peer-to-peer"
|
"peer-to-peer"
|
||||||
]
|
]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user