-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.23 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.23 KB
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
{
"type": "module",
"name": "@webxdc/realtime",
"description": "High level real-time and presence API for webxdc apps",
"version": "0.2.2",
"license": "MIT",
"author": "adbenitez",
"keywords": [
"webxdc",
"deltachat"
],
"repository": {
"type": "git",
"url": "https://github.com/webxdc/realtime.git"
},
"bugs": {
"url": "https://github.com/webxdc/realtime/issues"
},
"homepage": "https://github.com/webxdc/realtime",
"files": [
"dist"
],
"module": "./dist/realtime.js",
"types": "./lib/realtime.d.ts",
"source": "./lib/realtime.ts",
"exports": {
".": {
"import": "./dist/realtime.js"
}
},
"scripts": {
"start": "vite --port 3000",
"emulator": "concurrently \"npm run start\" \"webxdc-dev run http://localhost:3000\"",
"fix": "prettier --write .",
"check": "tsc && prettier --check .",
"build": "tsc --p ./tsconfig-build.json && vite build"
},
"devDependencies": {
"@webxdc/types": "latest",
"@webxdc/vite-plugins": "latest",
"@webxdc/webxdc-dev": "latest",
"concurrently": "^9.1.2",
"prettier": "latest",
"typescript": "latest",
"vite": "latest",
"vite-plugin-dts": "^4.5.4"
},
"dependencies": {
"lib0": "^0.2.108"
}
}