-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.8 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.8 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
69
70
71
72
73
74
75
76
77
78
{
"name": "y-postgresql",
"version": "1.0.1",
"description": "PostgreSQL database adapter for Yjs",
"type": "module",
"main": "./dist/y-postgresql.cjs",
"module": "./dist/y-postgresql.mjs",
"types": "./dist/y-postgresql.d.ts",
"exports": {
".": {
"module": "./dist/y-postgresql.mjs",
"import": "./dist/y-postgresql.mjs",
"require": "./dist/y-postgresql.cjs",
"types": "./dist/y-postgresql.d.ts"
}
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && rollup -c",
"lint": "npx eslint ./src/*",
"test": "jest"
},
"author": "Max Nötzold <max.noetzold@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MaxNoetzold/y-postgresql.git"
},
"bugs": {
"url": "https://github.com/MaxNoetzold/y-postgresql/issues"
},
"homepage": "https://github.com/MaxNoetzold/y-postgresql#readme",
"files": [
"dist/*",
"src/*"
],
"dependencies": {
"lib0": "^0.2.108",
"pg": "^8.16.0",
"pg-format": "^1.0.4"
},
"peerDependencies": {
"yjs": "^13.6.15"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5.14",
"@types/pg": "^8.15.2",
"@types/pg-cursor": "^2.7.2",
"@types/pg-format": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"dotenv": "^16.5.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"jest": "^29.7.0",
"rollup": "^4.41.1",
"rollup-plugin-cleanup": "^3.2.1",
"ts-jest": "^29.3.4",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"keywords": [
"yjs",
"postgresql",
"database",
"adapter",
"shared editing",
"collaboration",
"offline",
"CRDT",
"concurrency",
"persistence"
]
}