-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.59 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.59 KB
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
{
"name": "@otjs/firebase-plaintext",
"version": "0.2.2",
"description": "Database Adapter implementation for Firebase to use with Plain Text Editor",
"author": "Progyan Bhattacharya <bprogyan@gmail.com>",
"homepage": "https://ot.js.org",
"keywords": [
"event-bus",
"eventual-consistency",
"firebase",
"operational-transformation",
"typescript"
],
"license": "MIT",
"main": "lib/index.js",
"types": "index.d.ts",
"rootDir": "firebase-plaintext",
"directories": {
"lib": "src"
},
"files": [
"lib",
"index.d.ts"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xTheProDev/Operational-Transformation.git"
},
"bugs": {
"url": "https://github.com/0xTheProDev/Operational-Transformation/discussions"
},
"engines": {
"node": ">=10.10.0"
},
"scripts": {
"prebuild": "pnpm run clean",
"build": "pnpm run build:lib && pnpm run build:dts",
"build:lib": "webpack",
"build:dts": "api-extractor run",
"clean": "rimraf lib typings index.d.ts"
},
"devDependencies": {
"@otjs/plaintext": "0.2.2",
"@otjs/plaintext-editor": "0.2.2",
"@otjs/types": "workspace:*",
"@otjs/utils": "workspace:*",
"firebase": "12.4.0"
},
"peerDependencies": {
"@otjs/plaintext": "^0.2.0",
"@otjs/plaintext-editor": "^0.2.0",
"firebase": "^9.15.0"
},
"peerDependenciesMeta": {
"@otjs/plaintext": {
"optional": false
},
"@otjs/plaintext-editor": {
"optional": false
},
"firebase": {
"optional": false
}
}
}