-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
35 lines (35 loc) · 1.1 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
{
"name": "@erebos/doc-sync",
"version": "0.13.2",
"description": "Feed-based JSON document synchronization",
"repository": "[email protected]:MainframeHQ/erebos.git",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "types/index.d.ts",
"author": "Mainframe",
"license": "MIT",
"files": [
"cjs/*",
"esm/*",
"types/*"
],
"scripts": {
"clean": "del cjs esm types",
"test:types": "tsc --noEmit -p tsconfig.build.json",
"build:cjs": "BABEL_ENV='browser-cjs' babel src --out-dir cjs --extensions \".ts\"",
"build:esm": "BABEL_ENV='browser-esm' babel src --out-dir esm --extensions \".ts\"",
"build:js": "yarn build:cjs && yarn build:esm",
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
"build": "yarn test:types && yarn clean && yarn build:js && yarn build:types",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@babel/runtime": "^7.8.3",
"@erebos/bzz": "^0.13.0",
"@erebos/bzz-feed": "^0.13.2",
"@erebos/feed-list": "^0.13.2",
"@erebos/hex": "^0.13.0",
"automerge": "^0.12.1",
"rxjs": "^6.5.4"
}
}