-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
32 lines (32 loc) · 950 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
{
"name": "@featherscloud/chat",
"version": "1.0.0",
"description": "A local-first chat written in different frameworks.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:react": "npm run build --workspace react-chat",
"build:svelte": "npm run build --workspace svelte-chat",
"dev:svelte": "npm run dev --workspace svelte-chat",
"dev:react": "npm run dev --workspace react-chat",
"update-dependencies": "npm exec --workspaces -- ncu -u",
"init": "pinion init.mjs"
},
"workspaces": [
"react-chat",
"svelte-chat"
],
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"npm-check-updates": "^17.0.3"
},
"dependencies": {
"@automerge/automerge-repo": "^1.2.1",
"@automerge/automerge-repo-network-websocket": "^1.2.1",
"@featherscloud/pinion": "^0.5.4",
"dompurify": "^3.2.3",
"marked": "^15.0.6"
}
}