@blocklet/pages-kit 0.2.290 → 0.2.291

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/LICENSE +13 -0
  2. package/package.json +18 -20
package/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Copyright 2018-2020 ArcBlock
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blocklet/pages-kit",
3
- "version": "0.2.290",
3
+ "version": "0.2.291",
4
4
  "description": "Pages Kit components and utils",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -80,28 +80,16 @@
80
80
  "type": "git",
81
81
  "url": "git+https://github.com/blocklet/pages-kit.git"
82
82
  },
83
- "scripts": {
84
- "lint": "eslint src --ext .mjs,.js,.jsx,.ts,.tsx",
85
- "lint:fix": "npm run lint -- --fix",
86
- "build": "run-p build:*",
87
- "build:cjs": "tsc --module commonjs --outDir lib/cjs",
88
- "build:esm": "tsc --module es2022 --outDir lib/esm",
89
- "build:types": "tsc --declaration --emitDeclarationOnly --outDir lib/types",
90
- "dev": "run-p 'build:* -- -w'",
91
- "clean": "rimraf lib",
92
- "prepublishOnly": "npm run build",
93
- "prepare": "npm run build"
94
- },
95
83
  "dependencies": {
96
- "@arcblock/did-connect": "^2.9.73",
97
- "@blocklet/ai-kit": "^0.1.27",
98
- "@blocklet/ai-runtime": "^0.1.349",
99
- "@blocklet/js-sdk": "1.16.26-beta-cca12425",
84
+ "@arcblock/did-connect": "^2.9.76",
85
+ "@blocklet/ai-kit": "^0.1.28",
86
+ "@blocklet/ai-runtime": "^0.1.359",
87
+ "@blocklet/js-sdk": "^1.16.26",
100
88
  "@blocklet/sdk": "^1.16.26",
101
89
  "@iconify/react": "^4.1.1",
102
90
  "@lottiefiles/lottie-player": "^1.7.1",
103
91
  "axios": "^1.6.8",
104
- "dayjs": "^1.11.10",
92
+ "dayjs": "^1.11.11",
105
93
  "eventsource-parser": "^1.1.2",
106
94
  "immer": "^10.1.1",
107
95
  "js-base64": "^3.7.7",
@@ -134,7 +122,7 @@
134
122
  "react-router-dom": "^6.16.0"
135
123
  },
136
124
  "devDependencies": {
137
- "@arcblock/ux": "^2.9.73",
125
+ "@arcblock/ux": "^2.9.76",
138
126
  "@emotion/cache": "^11.11.0",
139
127
  "@emotion/css": "^11.11.2",
140
128
  "@emotion/react": "^11.11.4",
@@ -153,5 +141,15 @@
153
141
  "react-dom": "^18.3.1",
154
142
  "react-router-dom": "^6.23.0",
155
143
  "rimraf": "^5.0.5"
144
+ },
145
+ "scripts": {
146
+ "lint": "eslint src --ext .mjs,.js,.jsx,.ts,.tsx",
147
+ "lint:fix": "npm run lint -- --fix",
148
+ "build": "run-p build:*",
149
+ "build:cjs": "tsc --module commonjs --outDir lib/cjs",
150
+ "build:esm": "tsc --module es2022 --outDir lib/esm",
151
+ "build:types": "tsc --declaration --emitDeclarationOnly --outDir lib/types",
152
+ "dev": "run-p 'build:* -- -w'",
153
+ "clean": "rimraf lib"
156
154
  }
157
- }
155
+ }