-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.32 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.32 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
{
"name": "@dittolive/ditto-chat-monorepo",
"version": "1.0.0",
"private": true,
"description": "Ditto Chat JavaScript SDKs monorepo",
"workspaces": [
"sdks/js/ditto-chat-core",
"sdks/js/ditto-chat-ui",
"apps/web"
],
"scripts": {
"dev": "npm run dev -w dittochatdemo",
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present && npm run typecheck --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,css,html}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,css,html}\"",
"clean": "npm run clean --workspaces --if-present && rm -rf node_modules",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"prettier": "^3.7.4"
},
"keywords": [
"ditto",
"chat",
"monorepo"
],
"author": "Ditto",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/getditto/DittoChat.git"
}
}