-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.81 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
{
"name": "y-postgresql",
"version": "1.0.0",
"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": "shx rm -rf dist",
"build": "npm run clean && rollup -c",
"lint": "npx eslint ./src/*",
"test": "jest"
},
"author": "Max Nötzold <[email protected]>",
"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.94",
"pg": "^8.11.5",
"pg-format": "^1.0.4"
},
"peerDependencies": {
"yjs": "^13.6.15"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/pg": "^8.11.6",
"@types/pg-cursor": "^2.7.2",
"@types/pg-format": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"dotenv": "^16.4.5",
"eslint": "8.57",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"rollup": "^4.17.2",
"rollup-plugin-cleanup": "^3.2.1",
"shx": "^0.3.4",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"keywords": [
"yjs",
"postgresql",
"database",
"adapter",
"shared editing",
"collaboration",
"offline",
"CRDT",
"concurrency",
"persistence"
]
}