aspi 1.1.0-beta.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/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "aspi",
3
+ "description": "Rest API client for typescript projects with chain of responsibility design pattern.",
4
+ "version": "1.1.0-beta.0",
5
+ "module": "src/index.ts",
6
+ "type": "module",
7
+ "devDependencies": {
8
+ "@changesets/cli": "^2.27.11",
9
+ "@types/bun": "latest",
10
+ "prettier": "^3.4.2",
11
+ "tsup": "^8.3.5",
12
+ "vitest": "^2.1.8",
13
+ "zod": "^3.24.1"
14
+ },
15
+ "peerDependencies": {
16
+ "typescript": "^5.0.0"
17
+ },
18
+ "author": {
19
+ "email": "harshpareek91@gmai.com",
20
+ "name": "Harsh Pareek",
21
+ "url": "https://hrshwrites.vercel.app"
22
+ },
23
+ "keywords": [
24
+ "fetch",
25
+ "rest",
26
+ "axios",
27
+ "request"
28
+ ],
29
+ "license": "MIT",
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "git+https://github.com/harshtalks/aspi.git"
33
+ },
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
+ "exports": {
47
+ "./package.json": "./package.json",
48
+ ".": {
49
+ "import": "./dist/index.js",
50
+ "default": "./dist/index.cjs"
51
+ }
52
+ },
53
+ "files": [
54
+ "dist"
55
+ ]
56
+ }