@ticatec/restful_service_api 0.1.5 → 0.1.6
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-CN.md +4 -1
- package/README.md +4 -1
- package/package.json +6 -1
- package/tsconfig.json +0 -15
package/README-CN.md
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
# @ticatec/restful_service_api
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@ticatec/restful_service_api)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
4
5
|
|
|
5
6
|
一个轻量级的 TypeScript RESTful API 浏览器客户端,具有完善的错误处理和拦截器支持。
|
|
6
7
|
|
|
8
|
+
中文版 | [English](README.md)
|
|
9
|
+
|
|
7
10
|
## 特性
|
|
8
11
|
|
|
9
12
|
- 🚀 **轻量级**: 零依赖,专为现代浏览器构建
|
package/README.md
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
# @ticatec/restful_service_api
|
|
2
2
|
|
|
3
|
-
[
|
|
3
|
+
[](https://www.npmjs.com/package/@ticatec/restful_service_api)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
4
5
|
|
|
5
6
|
A lightweight TypeScript RESTful API client for browsers with comprehensive error handling and interceptor support.
|
|
6
7
|
|
|
8
|
+
[中文版](README-CN.md) | English
|
|
9
|
+
|
|
7
10
|
## Features
|
|
8
11
|
|
|
9
12
|
- 🚀 **Lightweight**: Zero dependencies, built for modern browsers
|
package/package.json
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ticatec/restful_service_api",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "A lightweight TypeScript RESTful API client for browsers with error handling.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist/",
|
|
10
|
+
"README*.md",
|
|
11
|
+
"LICENSE"
|
|
12
|
+
],
|
|
8
13
|
"exports": {
|
|
9
14
|
".": {
|
|
10
15
|
"import": "./dist/index.js",
|
package/tsconfig.json
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ES2019",
|
|
4
|
-
"module": "ESNext",
|
|
5
|
-
"lib": ["DOM", "ES2019"],
|
|
6
|
-
"moduleResolution": "bundler",
|
|
7
|
-
"esModuleInterop": true,
|
|
8
|
-
"declaration": true,
|
|
9
|
-
"outDir": "dist",
|
|
10
|
-
"rootDir": "src",
|
|
11
|
-
"strict": true,
|
|
12
|
-
"skipLibCheck": true
|
|
13
|
-
},
|
|
14
|
-
"include": ["src"]
|
|
15
|
-
}
|