-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
{
"name": "@mithic/crdt",
"version": "0.3.0",
"description": "Standard eventsourced CRDT library for mithic",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"/dist"
],
"scripts": {
"prepublishOnly": "npm run clean && npm run build && npm test && npm run doc",
"clean": "rimraf coverage docs dist",
"prebuild": "npm run lint",
"build": "npm run tsc && npm run babel",
"lint": "eslint src --ext .ts",
"babel": "babel src -d dist -x '.ts' --root-mode upward",
"tsc": "tsc --project tsconfig.build.json",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"doc": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andykswong/mithic.git"
},
"keywords": [
"collaboration",
"crdt",
"decentralized",
"eventsourcing",
"mithic",
"offline-first",
"typescript"
],
"author": "Andy K.S. Wong <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andykswong/mithic/issues"
},
"homepage": "https://github.com/andykswong/mithic",
"dependencies": {
"@mithic/collections": "^0.3",
"@mithic/commons": "^0.3",
"@mithic/messaging": "^0.3"
},
"optionalDependencies": {
"@ipld/dag-cbor": "^9.0",
"multiformats": "^13.0"
},
"devDependencies": {
}
}