@streamlayer/web-os 0.1.0
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 +3 -0
- package/lib/cjs/gamification-feature.js +1 -0
- package/lib/cjs/gamification-feature2.js +1 -0
- package/lib/cjs/index.js +1 -0
- package/lib/cjs/index2.js +94 -0
- package/lib/es/gamification-feature.js +4 -0
- package/lib/es/gamification-feature2.js +684 -0
- package/lib/es/index.js +9 -0
- package/lib/es/index2.js +30768 -0
- package/lib/index.d.ts +16 -0
- package/lib/style.css +1 -0
- package/package.json +100 -0
package/package.json
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@streamlayer/web-os",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"author": "StreamLayer, Inc (https://streamlayer.io)",
|
|
6
|
+
"maintainers": [
|
|
7
|
+
{
|
|
8
|
+
"name": "Renat Berezovsky",
|
|
9
|
+
"url": "https://github.com/BrRenat"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"main": "./lib/cjs/index.js",
|
|
13
|
+
"types": "./lib/index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"module": "./lib/es/index.js",
|
|
17
|
+
"require": "./lib/cjs/index.js",
|
|
18
|
+
"types": "./lib/index.d.ts"
|
|
19
|
+
},
|
|
20
|
+
"./style.css": {
|
|
21
|
+
"import": "./lib/style.css",
|
|
22
|
+
"require": "./lib/style.css"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"lib/",
|
|
27
|
+
"package.json"
|
|
28
|
+
],
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@streamlayer/feature-gamification": "^1.18.1",
|
|
31
|
+
"@streamlayer/sdk-web": "^1.12.1",
|
|
32
|
+
"@streamlayer/sdk-web-analytics": "^1.9.1",
|
|
33
|
+
"@streamlayer/sdk-web-api": "^1.10.1",
|
|
34
|
+
"@streamlayer/sdk-web-core": "^1.13.1",
|
|
35
|
+
"@streamlayer/sdk-web-features": "^1.0.64",
|
|
36
|
+
"@streamlayer/sdk-web-interfaces": "^1.6.2",
|
|
37
|
+
"@streamlayer/sdk-web-logger": "^1.0.64",
|
|
38
|
+
"@streamlayer/sdk-web-notifications": "^1.3.26",
|
|
39
|
+
"@streamlayer/sdk-web-storage": "^1.0.64",
|
|
40
|
+
"@streamlayer/react-polyfills": "^0.1.24",
|
|
41
|
+
"@streamlayer/sdk-web-types": "^1.12.1"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"@bufbuild/protobuf": "^2.2.2",
|
|
45
|
+
"@connectrpc/connect": "^2.0.0",
|
|
46
|
+
"@connectrpc/connect-web": "^2.0.0",
|
|
47
|
+
"@fastify/deepmerge": "^2.0.0",
|
|
48
|
+
"@lottiefiles/react-lottie-player": "^3.5.4",
|
|
49
|
+
"@nanostores/query": "^0.2.10",
|
|
50
|
+
"@nanostores/react": "^0.7.2",
|
|
51
|
+
"@types/lodash.throttle": "^4.1.9",
|
|
52
|
+
"lodash.throttle": "^4.1.1",
|
|
53
|
+
"uuid": "^11.1.0",
|
|
54
|
+
"nanostores": "^0.11.4",
|
|
55
|
+
"pino": "^9.4.0",
|
|
56
|
+
"react-auth-code-input": "^3.2.1",
|
|
57
|
+
"react-countdown-circle-timer": "^3.2.1",
|
|
58
|
+
"react-countup": "^6.5.3",
|
|
59
|
+
"react-infinite-scroller": "^1.2.6",
|
|
60
|
+
"react-phone-number-input": "^3.4.8"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@babel/preset-react": "^7.24.7",
|
|
64
|
+
"@babel/preset-typescript": "^7.24.7",
|
|
65
|
+
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
|
|
66
|
+
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
|
|
67
|
+
"@linaria/babel-preset": "^5.0.4",
|
|
68
|
+
"@nrwl/esbuild": "19.8.4",
|
|
69
|
+
"@size-limit/esbuild": "^11.1.6",
|
|
70
|
+
"@size-limit/esbuild-why": "^11.1.6",
|
|
71
|
+
"@size-limit/file": "^11.1.6",
|
|
72
|
+
"@testing-library/react": "16.0.1",
|
|
73
|
+
"@types/react": "18.3.11",
|
|
74
|
+
"@types/react-dom": "18.3.0",
|
|
75
|
+
"@types/react-infinite-scroller": "^1.2.5",
|
|
76
|
+
"@wyw-in-js/vite": "^0.5.3",
|
|
77
|
+
"cssnano": "^7.0.6",
|
|
78
|
+
"esbuild-plugin-external-global": "^1.0.1",
|
|
79
|
+
"esbuild-plugin-polyfill-node": "^0.3.0",
|
|
80
|
+
"esbuild-plugin-svgr": "^2.1.0",
|
|
81
|
+
"eslint-plugin-jsx-a11y": "6.9.0",
|
|
82
|
+
"eslint-plugin-react": "7.34.3",
|
|
83
|
+
"eslint-plugin-react-hooks": "4.6.2",
|
|
84
|
+
"nx-gcs": "^1.0.6",
|
|
85
|
+
"postcss": "^8.4.47",
|
|
86
|
+
"postcss-cli": "^11.0.0",
|
|
87
|
+
"postcss-nested": "^6.2.0",
|
|
88
|
+
"postcss-prefix-selector": "^1.16.1",
|
|
89
|
+
"postcss-scss": "^4.0.9",
|
|
90
|
+
"react": "18.3.1",
|
|
91
|
+
"react-dom": "18.3.1",
|
|
92
|
+
"react-refresh": "^0.14.2",
|
|
93
|
+
"rollup-plugin-visualizer": "^5.12.0",
|
|
94
|
+
"size-limit": "^11.1.6",
|
|
95
|
+
"url-loader": "^4.1.1",
|
|
96
|
+
"vite-plugin-dts": "^4.2.3",
|
|
97
|
+
"@streamlayer/react": "^1.17.0",
|
|
98
|
+
"@streamlayer/react-ui": "^1.25.1"
|
|
99
|
+
}
|
|
100
|
+
}
|