-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
84 lines (84 loc) · 1.95 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
{
"name": "y-indexeddb",
"version": "9.0.12",
"description": "IndexedDB database adapter for Yjs",
"type": "module",
"main": "./dist/y-indexeddb.cjs",
"module": "./src/y-indexeddb.js",
"types": "./dist/src/y-indexeddb.d.ts",
"sideEffects": false,
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/dmonad"
},
"scripts": {
"clean": "rm -rf dist",
"test": "npm run lint",
"dist": "rollup -c",
"lint": "markdownlint README.md && standard && tsc",
"preversion": "npm run clean && npm run lint && npm run dist",
"debug": "concurrently 'rollup -wc' 'http-server -o .'"
},
"files": [
"dist/*",
"src/*"
],
"exports": {
".": {
"types": "./dist/src/y-indexeddb.d.ts",
"module": "./src/y-indexeddb.js",
"import": "./src/y-indexeddb.js",
"require": "./dist/y-indexeddb.cjs",
"default": "./src/y-indexeddb.js"
},
"./package.json": "./package.json"
},
"standard": {
"ignore": [
"/dist",
"/node_modules",
"/docs"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/yjs/y-indexeddb.git"
},
"keywords": [
"Yjs",
"CRDT",
"offline",
"shared editing",
"collaboration",
"concurrency"
],
"author": "Kevin Jahns <kevin.jahns@protonmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yjs/y-indexeddb/issues"
},
"homepage": "https://yjs.dev",
"dependencies": {
"lib0": "^0.2.74"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"concurrently": "^3.6.1",
"http-server": "^0.12.3",
"jsdoc": "^3.6.6",
"markdownlint-cli": "^0.19.0",
"rollup": "^1.32.1",
"standard": "^11.0.1",
"typescript": "^5.0.4",
"y-protocols": "^1.0.1",
"yjs": "^13.4.7"
},
"peerDependencies": {
"yjs": "^13.0.0"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
}
}