-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 1 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
{
"name": "sharedb-client-browser",
"version": "5.1.1",
"description": "Vite-compatible builds for ShareDB and OT types",
"files": [
"dist"
],
"scripts": {
"build-sharedb-client": "browserify src/sharedb-client.js -s ShareDBClient -o dist/sharedb-client-umd.cjs",
"build-ot-json1": "browserify src/ot-json1.js -s OTJSON1 -o dist/ot-json1-umd.cjs",
"build-ot-json1-presence": "browserify src/ot-json1-presence.js -s OTJSON1Presence -o dist/ot-json1-presence-umd.cjs",
"build": "rm -rf dist; npm run build-sharedb-client; npm run build-ot-json1; npm run build-ot-json1-presence",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/vizhub-core/sharedb-client-browser.git"
},
"author": "Curran Kelleher",
"license": "MIT",
"devDependencies": {
"browserify": "^17.0.1",
"ot-json0": "^1.1.0",
"ot-json1": "^1.0.2",
"ot-json1-presence": "^2.1.0",
"ot-text-unicode": "^4.0.0",
"sharedb": "^5.1.1"
}
}