@queuezero/embed 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +60 -0
- package/dist/index.global.js +296 -0
- package/package.json +36 -0
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@queuezero/embed",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "Embeddable vanilla JS widget for QueueZero viral waitlists",
|
|
5
|
+
"main": "./dist/index.global.js",
|
|
6
|
+
"browser": "./dist/index.global.js",
|
|
7
|
+
"unpkg": "./dist/index.global.js",
|
|
8
|
+
"jsdelivr": "./dist/index.global.js",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "tsup src/index.tsx --format iife --global-name QueueZero --clean --minify"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"waitlist",
|
|
18
|
+
"viral",
|
|
19
|
+
"embed",
|
|
20
|
+
"widget",
|
|
21
|
+
"referral"
|
|
22
|
+
],
|
|
23
|
+
"author": "QueueZero Team",
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@queuezero/react": "^0.1.2",
|
|
27
|
+
"react": "^18.2.0",
|
|
28
|
+
"react-dom": "^18.2.0"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@types/react": "^18.2.0",
|
|
32
|
+
"@types/react-dom": "^18.2.0",
|
|
33
|
+
"tsup": "^8.0.0",
|
|
34
|
+
"typescript": "^5.0.0"
|
|
35
|
+
}
|
|
36
|
+
}
|