generated from orbitdb/repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@orbitdb/liftoff",
"version": "1.1.0",
"description": "A preconfigured instance which allows developers to \"test drive\" OrbitDB.",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "cross-env 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",
"build": "npm run build:dist && npm run build:debug",
"build:dist": "webpack --config conf/webpack.config.js",
"build:debug": "webpack --config conf/webpack.debug.config.js",
"build:tests": "rm -f test/browser/bundle.js* && webpack --config ./conf/webpack.tests.config.js",
"prepublishOnly": "npm run build",
"lint": "standard --env=mocha",
"lint:fix": "standard --fix",
"webrtc": "node ./test/utils/relay.js",
"webrtc:background": "node ./test/utils/relay.js &"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbitdb/liftoff.git"
},
"keywords": [
"orbitdb",
"quickstart",
"helia",
"libp2p",
"liftoff"
],
"author": "OrbitDB",
"license": "MIT",
"bugs": {
"url": "https://github.com/orbitdb/liftoff/issues"
},
"homepage": "https://github.com/orbitdb/liftoff#readme",
"standard": {
"env": [
"mocha"
],
"ignore": [
"test/browser/**"
]
},
"devDependencies": {
"cross-env": "^7.0.3",
"mocha": "^10.2.0",
"path-browserify": "^1.0.1",
"playwright-test": "^14.0.0",
"rimraf": "^5.0.5",
"standard": "^17.1.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^14.1.0",
"@orbitdb/core": "^2.4.1",
"blockstore-level": "^2.0.1",
"helia": "^5.1.0"
}
}