-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "aspi",
"description": "Rest API client for typescript projects with chain of responsibility design pattern.",
"version": "1.1.0-beta.1",
"module": "src/index.ts",
"type": "module",
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@types/bun": "latest",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"vitest": "^2.1.8",
"zod": "^3.24.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"author": {
"email": "[email protected]",
"name": "Harsh Pareek",
"url": "https://hrshwrites.vercel.app"
},
"keywords": [
"fetch",
"rest",
"axios",
"request"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/harshtalks/aspi.git"
},
"homepage": "https://github.com/harshtalks/aspi",
"scripts": {
"ci": "bun run test:run && bun run build && bun run check-format && bun run lint",
"format": "prettier --write .",
"check-format": "prettier --check .",
"build": "tsup",
"lint": "tsc",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "bun run ci",
"test": "vitest",
"test:run": "vitest run"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"files": [
"dist"
]
}