-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.56 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
{
"name": "yackbox",
"version": "1.0.1",
"description": "A lightweight chatbox control in pure js (both esm and umd) which can be used for chat and llm applications. ",
"main": "rollup.config.js",
"type": "module",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"make-index.html": "./node_modules/docbat/src/docbat-cli.js -i README.md -o index.html",
"generate-sri": "cat ./dist/yackbox.umd.js | openssl dgst -sha384 -binary | openssl base64 -A > ./dist/yackbox.umd.js_sri.txt && cat ./dist/yackbox.umd.min.js | openssl dgst -sha384 -binary | openssl base64 -A > ./dist/yackbox.umd.min.js_sri.txt && cat ./dist/yackbox.esm.js | openssl dgst -sha384 -binary | openssl base64 -A > ./dist/yackbox.esm.js_sri.txt && cat ./dist/yackbox.esm.min.js | openssl dgst -sha384 -binary | openssl base64 -A > ./dist/yackbox.esm.min.js_sri.txt",
"build-all": "npm run build && npm run generate-sri && npm run make-index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deftio/yackbox.git"
},
"keywords": [
"chatbox",
"ui",
"chatroom",
"history",
"purejs",
"chat",
"llm"
],
"author": "Manu Chatterjee (deftio)",
"license": "ISC",
"bugs": {
"url": "https://github.com/deftio/yackbox/issues"
},
"homepage": "https://github.com/deftio/yackbox#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"docbat": "^0.9.3"
},
"dependencies": {
"serve": "^14.2.1"
}
}