@unissey-web/sdk-react 3.8.0-rc

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,47 @@
1
+ {
2
+ "name": "@unissey-web/sdk-react",
3
+ "version": "3.8.0-rc",
4
+ "description": "Unissey React Sdk",
5
+ "license": "ISC",
6
+ "module": "./dist/index.js",
7
+ "typings": "./dist/index.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "scripts": {
12
+ "dev": "start-storybook -p 6007 --ci",
13
+ "build:storybook": "build-storybook",
14
+ "build:pkgs": "npm run build:types && npm run build:pkg",
15
+ "postbuild:pkgs": "npm run update-wc-version",
16
+ "build:pkg": "rimraf dist && rollup --config",
17
+ "build:types": "rimraf tsc-types && tsc",
18
+ "test": "npm run test:lint && npm run test:format",
19
+ "test:lint": "eslint --ext .ts, ./src",
20
+ "test:format": "prettier --check \"src/**/*.ts\"",
21
+ "update-wc-version": "node update-web-component.mjs"
22
+ },
23
+ "dependencies": {
24
+ "@lit-labs/react": "^1.0.2",
25
+ "@unissey-web/web-components": "3.8.0-rc"
26
+ },
27
+ "peerDependencies": {
28
+ "react": "^17.0.0 || ^18.0.0",
29
+ "react-dom": "^17.0.0 || ^18.0.0"
30
+ },
31
+ "devDependencies": {
32
+ "@babel/core": "^7.16.12",
33
+ "@babel/preset-react": "^7.16.7",
34
+ "@storybook/addon-actions": "^6.4.17",
35
+ "@storybook/addon-docs": "^6.5.15",
36
+ "@storybook/addon-essentials": "^6.4.17",
37
+ "@storybook/addon-links": "^6.4.17",
38
+ "@storybook/builder-webpack5": "^6.5.15",
39
+ "@storybook/manager-webpack5": "^6.5.15",
40
+ "@storybook/react": "^6.4.17",
41
+ "babel-loader": "^8.2.3",
42
+ "react": "^17.0.2",
43
+ "react-dom": "^17.0.2",
44
+ "rollup-plugin-dts": "^5.1.1"
45
+ },
46
+ "private": false
47
+ }