-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.67 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
{
"name": "@rumenpetrov/ai-chat-widget",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "0.0.19",
"type": "module",
"files": [
"dist"
],
"types": "./dist/main.d.ts",
"main": "./dist/main.umd.cjs",
"module": "./dist/main.js",
"exports": {
".": {
"import": "./dist/bundle.js"
},
"./dist": {
"import": "./dist/bundle.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && rollup -p @rollup/plugin-node-resolve dist/main.js -o dist/bundle.js",
"preview": "vite preview",
"release": "npm run build && changeset publish",
"changeset": "changeset"
},
"description": "This is a native web component which provides basic AI chat functionality.",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rumenpetrov/ai-chat-widget.git"
},
"keywords": [
"ai",
"chat",
"web-component"
],
"author": "Rumen Petrov",
"license": "MIT",
"bugs": {
"url": "https://github.com/rumenpetrov/ai-chat-widget/issues"
},
"homepage": "https://github.com/rumenpetrov/ai-chat-widget#readme",
"peerDependencies": {
"lit": "^3.1.3"
},
"devDependencies": {
"@changesets/cli": "2.27.5",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"rollup-plugin-summary": "2.0.1",
"typescript": "5.4.5",
"vite": "5.2.12"
},
"dependencies": {
"@lit-labs/motion": "1.0.7",
"@material/web": "1.5.0",
"@types/dompurify": "3.0.5",
"dompurify": "3.1.5",
"highlight.js": "11.9.0",
"idb": "8.0.0",
"marked": "12.0.2",
"marked-highlight": "2.1.1"
}
}