-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 896 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 896 Bytes
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
{
"name": "chatbootai-ui",
"version": "1.0.0",
"description": "ChatBootAI user interface",
"private": true,
"scripts": {
"start": "npm start --workspace=chat-web-component",
"build": "npm run build -ws --if-present",
"build:web-component": "npm run build --workspace=@chatbootai/chat",
"build:website": "npm run build:website --workspace=@chatbootai/chat",
"clean": "npm run clean -ws --if-present",
"format": "prettier --list-different --write .",
"format:check": "prettier --list-different ."
},
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"devDependencies": {
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"typescript": "*"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": true
}
}