-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 854 Bytes
/
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
{
"name": "y-pojo",
"version": "0.0.8",
"description": "Syncronize a YJS document to/from a plain old javascript object",
"main": "dist/y-pojo.js",
"types": "dist/y-pojo.d.ts",
"type": "module",
"scripts": {
"build": "./node_modules/.bin/tsc",
"prepack": "yarn build",
"test": "yarn build && ./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/boourns/y-pojo.git"
},
"keywords": [
"yjs",
"crdt"
],
"author": "Tom Burns",
"license": "MIT",
"bugs": {
"url": "https://github.com/boourns/y-pojo/issues"
},
"homepage": "https://github.com/boourns/y-pojo#readme",
"packageManager": "[email protected]",
"peerDependencies": {
"yjs": "^13.5.38"
},
"devDependencies": {
"mocha": "^10.0.0",
"typescript": "^4.0.5",
"yjs": "^13.5.38"
}
}