-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 864 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "ai-chatbot-widget",
"version": "1.0.0",
"private": true,
"scripts": {
"build:css": "npx tailwindcss -i ./src/input.css -o ./public/styles.css --minify && cat ./src/widget-styles.css >> ./public/styles.css",
"deploy": "npm run build:css && wrangler deploy",
"dev": "npm run build:css && wrangler dev",
"vendor:sentry": "node -e \"const v=require('@sentry/browser/package.json').version; require('child_process').execSync('curl -fsSL https://browser.sentry-cdn.com/'+v+'/bundle.min.js -o public/vendor/cb-obs.min.js',{stdio:'inherit'}); console.log('vendored @sentry/browser',v,'-> public/vendor/cb-obs.min.js');\""
},
"devDependencies": {
"@sentry/browser": "^10.70.0",
"autoprefixer": "^10.4.23",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.19",
"wrangler": "^4.56.0"
},
"dependencies": {
"@sentry/cloudflare": "^10.70.0"
}
}