-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 837 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 837 Bytes
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
{
"name": "@ryneex/api-client",
"module": "src/index.ts",
"type": "module",
"version": "2.0.1",
"exports": {
".": "./index.js"
},
"scripts": {
"lint": "tsc --noEmit && eslint .",
"format": "prettier --write \"**/*.{js,ts,tsx,json,css,md}\"",
"build": "tsup && cp package.json dist/package.json && cp README.md dist/README.md",
"build:publish": "bun run build && cd dist && npm publish"
},
"peerDependencies": {
"@tanstack/react-query": "^5",
"axios": "^1.13.2",
"typescript": "^5",
"zod": "^4"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/bun": "latest",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.7.4",
"tsup": "^8.5.1",
"typescript-eslint": "^8.51.0"
},
"publishConfig": {
"access": "public"
}
}