-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "@buildshipapp/chat-widget",
"version": "1.4.1",
"description": "A chat widget that can be paired with BuildShip workflows built using the Assistant API.",
"repository": {
"type": "git",
"url": "https://github.com/rowyio/buildship-chat-widget.git"
},
"keywords": [
"buildship",
"chat",
"widget",
"assistant"
],
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"source": "src/index.ts",
"types": "dist/src/index.d.ts",
"exports": {
"types": "./dist/src/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"unpkg": "dist/index.umd.js",
"files": [
"dist/**/*"
],
"module": "dist/index.module.js",
"scripts": {
"build": "node ./generate-widget-html-string && microbundle --define process.env.NODE_ENV=production --css inline",
"dev": "node ./generate-widget-html-string && microbundle watch --define process.env.NODE_ENV=production --css inline",
"prepare": "node ./generate-widget-html-string && microbundle --define process.env.NODE_ENV=production --css inline"
},
"devDependencies": {
"@floating-ui/dom": "^1.6.3",
"focus-trap": "^7.5.4",
"html-minifier": "^4.0.0",
"marked": "^12.0.0",
"microbundle": "^0.15.1"
}
}