-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (56 loc) · 1.53 KB
/
package.json
File metadata and controls
57 lines (56 loc) · 1.53 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
52
53
54
55
56
57
{
"name": "chatpilot",
"version": "1.1.1",
"description": "A powerful AI-powered customer service and website assistance solution for businesses",
"main": "src/ChatPilot.js",
"scripts": {
"build": "npm run build:js && npm run build:css && npm run build:templates",
"build:js": "uglifyjs src/ChatPilot.js -o dist/ChatPilot.min.js --compress --mangle",
"build:css": "mkdir -p dist/styles/themes && cp styles/themes/*.css dist/styles/themes/",
"build:templates": "mkdir -p dist/templates && cp templates/*.js dist/templates/ && cp templates/README.md dist/templates/",
"dev": "npm run build && python -m http.server 8000",
"test": "echo \"No tests specified\" && exit 0",
"lint": "eslint src/ChatPilot.js",
"format": "prettier --write src/ChatPilot.js"
},
"keywords": [
"chat",
"widget",
"ai",
"openai",
"gemini",
"chatbot",
"customer-support",
"javascript"
],
"author": "Israel Soyombo (kiingxo) <israelsoyombo@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kiingxo/chat-ai.git"
},
"bugs": {
"url": "https://github.com/kiingxo/chat-ai/issues"
},
"homepage": "https://github.com/kiingxo/chat-ai#readme",
"files": [
"src/",
"styles/",
"dist/",
"templates/",
"README.md"
],
"devDependencies": {
"uglify-js": "^3.17.4",
"eslint": "^8.0.0",
"prettier": "^2.8.0"
},
"engines": {
"node": ">=14.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}