aspi 1.3.0 → 2.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 +464 -209
- package/dist/index.cjs +548 -149
- package/dist/index.d.cts +583 -138
- package/dist/index.d.ts +583 -138
- package/dist/index.js +548 -149
- package/package.json +13 -14
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aspi",
|
|
3
3
|
"description": "Rest API client for typescript projects with chain of responsibility design pattern.",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "2.1.0",
|
|
5
5
|
"module": "src/index.ts",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"devDependencies": {
|
|
@@ -32,17 +32,6 @@
|
|
|
32
32
|
"url": "git+https://github.com/harshtalks/aspi.git"
|
|
33
33
|
},
|
|
34
34
|
"homepage": "https://github.com/harshtalks/aspi",
|
|
35
|
-
"scripts": {
|
|
36
|
-
"ci": "bun run test:run && bun run build && bun run check-format && bun run lint",
|
|
37
|
-
"format": "prettier --write .",
|
|
38
|
-
"check-format": "prettier --check .",
|
|
39
|
-
"build": "tsup",
|
|
40
|
-
"lint": "tsc",
|
|
41
|
-
"local-release": "changeset version && changeset publish",
|
|
42
|
-
"prepublishOnly": "bun run ci",
|
|
43
|
-
"test": "vitest",
|
|
44
|
-
"test:run": "vitest run"
|
|
45
|
-
},
|
|
46
35
|
"exports": {
|
|
47
36
|
"./package.json": "./package.json",
|
|
48
37
|
".": {
|
|
@@ -52,5 +41,15 @@
|
|
|
52
41
|
},
|
|
53
42
|
"files": [
|
|
54
43
|
"dist"
|
|
55
|
-
]
|
|
56
|
-
|
|
44
|
+
],
|
|
45
|
+
"scripts": {
|
|
46
|
+
"ci": "bun run test:run && bun run build && bun run check-format && bun run lint",
|
|
47
|
+
"format": "prettier --write .",
|
|
48
|
+
"check-format": "prettier --check .",
|
|
49
|
+
"build": "tsup",
|
|
50
|
+
"lint": "tsc",
|
|
51
|
+
"local-release": "changeset version && changeset publish",
|
|
52
|
+
"test": "vitest",
|
|
53
|
+
"test:run": "vitest run"
|
|
54
|
+
}
|
|
55
|
+
}
|