-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.32 KB
/
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
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "quikchat",
"version": "1.1.10",
"description": "quikchat is a simple vanilla (no dependancies) JavaScript chat control for browsers ",
"author": "deftio (https://github.com/deftio",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git://github.com/deftio/quikchat.git"
},
"bugs": {
"url": "git://github.com/deftio/quikchat/issues"
},
"homepage": "https://github.com/deftio/quikchat",
"main": "dist/quikchat.umd.min.js",
"module": "dist/quikchat.min.js",
"unpkg": "dist/quikchat.umd.min.js",
"browser": "dist/quikchat.umd.min.js",
"files": [
"dist"
],
"type": "module",
"directories": {
"examples": "examples"
},
"scripts": {
"test": "jest --coverage",
"minifyCSS": "node ./tools/minifyCSS.cjs",
"updateVersion": "node ./tools/updateVersion",
"makeIndexHTML": "node ./node_modules/docbat/src/docbat-cli.js -i README.md -o index.html",
"updateExampleCopies": "cp dist/quikchat.umd.min.js examples/fastapi_llm/static && cp dist/quikchat.min.css examples/fastapi_llm/static && cp dist/quikchat.umd.min.js examples/npm_express/static && cp dist/quikchat.min.css examples/npm_express/static",
"build": "npm run updateVersion && npm run makeIndexHTML && npm run minifyCSS && rollup -c && npm run updateExampleCopies"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.js$": "babel-jest"
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"html",
"text",
"lcov"
]
},
"keywords": [
"chat",
"chatcontrol",
"vanillajs",
"llm-chat",
"chatbox",
"chatboxcontrol"
],
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"babel-jest": "^29.7.0",
"clean-css": "^5.3.3",
"clean-css-cli": "^5.6.3",
"coveralls": "^3.1.1",
"cssnano": "^7.0.4",
"docbat": "^0.9.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.18.1",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-postcss": "^4.0.2"
}
}