@screeb/sdk-browser 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/README.md +18 -8
  2. package/package.json +36 -19
package/README.md CHANGED
@@ -1,16 +1,26 @@
1
- # `@screeb/sdk-browser`
2
-
3
1
  <p align="center">
4
- <img width="600" height="200" src="./readme/screeb-logo.svg">
2
+ <a href="https://screeb.app" alt="Intercom">
3
+ <img src="https://raw.githubusercontent.com/ScreebApp/sdk-js/master/packages/screeb-sdk-browser/readme/screeb-logo.svg?token=GHSAT0AAAAAAB2OOPMGT2QD5TL3IRJN3CKCZDEYHJA" alt="Logo" height="120px" style="margin-top: 20px;"/>
4
+ </a>
5
5
  </p>
6
+ <h1 align="center">@screeb/sdk-browser</h1>
7
+ <p align="center">
8
+ Screeb's browser sdk.
6
9
 
7
- **Continuous Product Discovery, Without the Time Sink.**
10
+ <b>Continuous Product Discovery, Without the Time Sink.</b>
8
11
 
9
- **Screeb** is the only Continuous Product Discovery platform that lets you analyse users' behaviour, ask in-app questions, recruit people for interviews and analyse data in a blink with AI.
12
+ <a href="https://screeb.app" alt="Intercom">Screeb</a> is the only Continuous Product Discovery platform that lets you analyse users' behaviour, ask in-app questions, recruit people for interviews and analyse data in a blink with AI.
13
+ </p>
10
14
 
11
- ---
15
+ <p align="center">
16
+ <a href="https://github.com/ScreebApp/sdk-js/actions/workflows/node.js.yml" alt="ci">
17
+ <img alt="ci" src="https://github.com/ScreebApp/sdk-js/actions/workflows/node.js.yml/badge.svg">
18
+ </a>
19
+ <img alt="version" src="https://img.shields.io/npm/v/@screeb/sdk-browser.svg" />
20
+ <img alt="minzipped size" src="https://badgen.net/bundlephobia/minzip/@screeb/sdk-browser">
21
+ <img alt="downloads" src="https://badgen.net/npm/dw/@screeb/sdk-browser" />
22
+ </p>
12
23
 
13
- For more information, visit [our homepage](https://screeb.app/).
14
24
 
15
25
  ## Installation
16
26
 
@@ -45,4 +55,4 @@ All third party contributors acknowledge that any contributions they provide wil
45
55
 
46
56
  ## License
47
57
 
48
- Released under [MIT License](../../LICENSE).
58
+ Released under [MIT License](https://github.com/ScreebApp/sdk-js/blob/master/LICENSE).
package/package.json CHANGED
@@ -1,21 +1,36 @@
1
1
  {
2
2
  "name": "@screeb/sdk-browser",
3
- "version": "0.1.3",
4
- "author": "Screeb's frontend team",
3
+ "version": "0.1.4",
5
4
  "description": "Screeb's browser sdk.",
6
- "license": "MIT",
7
- "scripts": {
8
- "lint": "eslint .",
9
- "build": "rollup -c ./node_modules/@screeb/typescript-config/src/rollup.config.js",
10
- "build:doc": "typedoc src/index.ts",
11
- "clean": "rm -Rf dist",
12
- "test": "jest"
5
+ "keywords": [
6
+ "product discovery",
7
+ "product management",
8
+ "survey",
9
+ "analytics",
10
+ "user feedback",
11
+ "user voice",
12
+ "user research"
13
+ ],
14
+ "homepage": "https://screeb.app",
15
+ "bugs": {
16
+ "url": "https://github.com/ScreebApp/sdk-js/issues",
17
+ "email": "suuport@screeb.app"
13
18
  },
14
- "publishConfig": {
15
- "access": "public"
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/ScreebApp/sdk-js.git",
22
+ "directory": "packages/screeb-sdk-browser"
16
23
  },
24
+ "license": "MIT",
25
+ "author": "Screeb's frontend team",
17
26
  "sideEffects": false,
18
27
  "type": "module",
28
+ "exports": {
29
+ "./package.json": "./package.json",
30
+ ".": {
31
+ "import": "./dist/es/index.js"
32
+ }
33
+ },
19
34
  "module": "dist/es/index.js",
20
35
  "types": "dist/es/index.d.ts",
21
36
  "files": [
@@ -23,15 +38,14 @@
23
38
  "docs",
24
39
  "README.md"
25
40
  ],
26
- "exports": {
27
- "./package.json": "./package.json",
28
- ".": {
29
- "import": "./dist/es/index.js"
30
- }
41
+ "scripts": {
42
+ "build": "rollup -c ./node_modules/@screeb/typescript-config/src/rollup.config.js",
43
+ "build:doc": "typedoc src/index.ts",
44
+ "clean": "rm -Rf dist",
45
+ "lint": "eslint .",
46
+ "test": "jest"
31
47
  },
32
- "dependencies": {
33
- "@screeb/eslint-config": "^0.1.2",
34
- "@screeb/typescript-config": "^0.1.2",
48
+ "devDependencies": {
35
49
  "@types/jest": "^29.5.1",
36
50
  "@types/node": "^18.16.3",
37
51
  "@typescript-eslint/eslint-plugin": "^5.59.2",
@@ -47,5 +61,8 @@
47
61
  "ts-jest": "^29.1.0",
48
62
  "typedoc": "^0.24.6",
49
63
  "typedoc-plugin-markdown": "^3.15.3"
64
+ },
65
+ "publishConfig": {
66
+ "access": "public"
50
67
  }
51
68
  }