-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
81 lines (81 loc) · 2.05 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
{
"name": "y-leveldb",
"version": "0.1.2",
"description": "LevelDb database adapter for Yjs",
"type": "module",
"main": "./dist/y-leveldb.cjs",
"module": "./src/y-leveldb.js",
"types": "./dist/src/y-leveldb.d.ts",
"sideEffects": false,
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/dmonad"
},
"scripts": {
"clean": "rm -rf dist",
"test": "rollup -c && nyc --check-coverage --lines 100 --branches 100 --functions 100 --statements 100 node ./dist/test.cjs",
"dist": "rollup -c",
"lint": "markdownlint README.md && standard && tsc",
"preversion": "npm run lint && npm run test && npm run clean && npm run dist && tsc && test -e dist/src/y-leveldb.d.ts && test -e dist/y-leveldb.cjs",
"debug": "concurrently 'rollup -wc' 'http-server -o .'"
},
"files": [
"dist/*",
"src/*"
],
"standard": {
"ignore": [
"/dist",
"/node_modules",
"/docs"
]
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./src/y-leveldb.js",
"require": "./dist/y-leveldb.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/yjs/y-leveldb.git"
},
"keywords": [
"Yjs",
"CRDT",
"offline",
"shared editing",
"collaboration",
"concurrency"
],
"author": "Kevin Jahns <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yjs/y-leveldb/issues"
},
"homepage": "https://yjs.dev",
"dependencies": {
"level": "^6.0.1",
"lib0": "^0.2.31"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"concurrently": "^3.6.1",
"http-server": "^0.12.3",
"jsdoc": "^3.6.3",
"level-mem": "^5.0.1",
"markdownlint-cli": "^0.23.2",
"nyc": "^15.1.0",
"rollup": "^2.20.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"standard": "^14.3.4",
"typescript": "^3.9.6",
"y-protocols": "^1.0.0",
"yjs": "^13.2.0"
},
"peerDependencies": {
"yjs": "^13.0.0"
}
}