@sprig-technologies/sprig-bundled 1.0.0-beta

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/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "@sprig-technologies/sprig-bundled",
3
+ "description": "npm package for the sprig web sdk with bundled dependencies",
4
+ "type": "module",
5
+ "files": [
6
+ "dist"
7
+ ],
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.cjs"
13
+ }
14
+ },
15
+ "main": "./dist/index.cjs",
16
+ "types": "./dist/index.d.ts",
17
+ "scripts": {
18
+ "build": "tsc && vite build --mode $mode && rollup -c",
19
+ "dev": "vite",
20
+ "dev:staging": "vite --mode staging",
21
+ "dev:prod": "vite --mode production"
22
+ },
23
+ "dependencies": {
24
+ "@mux/upchunk": "3.2.0",
25
+ "rrweb": "2.0.0-alpha.11"
26
+ },
27
+ "version": "1.0.0-beta",
28
+ "keywords": [
29
+ "sprig",
30
+ "extension",
31
+ "browser"
32
+ ],
33
+ "author": "Sprig",
34
+ "license": "SEE LICENSE IN LICENSE.md"
35
+ }