-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.19 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "mithic",
"version": "0.3.0",
"description": "Modular library for real-time, offline-first isomorphic applications",
"type": "module",
"sideEffects": false,
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": "./index.js"
},
"files": [
"./index.js",
"./index.d.ts"
],
"scripts": {
"prepublishOnly": "npm run clean && npm run build && npm test && npm run doc",
"build": "npm run build -ws",
"clean": "npm run clean -ws && rimraf docs",
"doc": "typedoc",
"test": "npm test -ws"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andykswong/mithic.git"
},
"keywords": [
"collaboration",
"cqrs",
"crdt",
"decentralized",
"distributed",
"eventsourcing",
"eventstore",
"p2p",
"offline-first",
"state-channel",
"triplestore",
"typescript",
"web3"
],
"author": "Andy K.S. Wong <andykswong@outlook.com>",
"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/cqrs": "^0.3",
"@mithic/crdt": "^0.3",
"@mithic/jsonr": "^0.3",
"@mithic/messaging": "^0.3"
},
"devDependencies": {
"@babel/cli": "^7.20",
"@babel/core": "^7.20",
"@babel/plugin-proposal-explicit-resource-management": "^7.20",
"@babel/preset-env": "^7.20",
"@babel/preset-typescript": "^7.20",
"@typescript-eslint/eslint-plugin": "^6.15",
"@typescript-eslint/parser": "^6.15",
"@types/jest": "^29.5",
"@types/node": "^20.0",
"babel-jest": "^29.5",
"core-js": "^3.30",
"cross-env": "^7.0",
"eslint": "^8.50",
"jest": "^29.5",
"multiformats": "^13.0",
"rimraf": "^5.0",
"typedoc": "^0.25",
"typescript": "^5.3"
},
"workspaces": [
"./packages/commons",
"./packages/collections",
"./packages/jsonr",
"./packages/messaging",
"./packages/cqrs",
"./packages/crdt",
"./packages/plugins/denokv",
"./packages/plugins/ipfs",
"./packages/plugins/level",
"./packages/plugins/redis",
"./packages/examples/*"
]
}