-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1 KB
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
{
"name": "@s21toolkit/client",
"description": "GQL API client for edu.21-school.ru",
"version": "1.1.4",
"type": "module",
"private": false,
"scripts": {
"lint:tsc": "tsc",
"lint:biome": "biome check .",
"lint": "pnpm lint:biome && pnpm lint:tsc",
"fix:biome": "biome check --write .",
"fix": "pnpm fix:biome",
"build:tsup": "tsup",
"build": "pnpm lint && pnpm build:tsup",
"postversion": "git push && git push --tags",
"release": "npm version -m 'chore(release): %s' --",
"prepublishOnly": "pnpm build"
},
"license": "MIT",
"dependencies": {
"@s21toolkit/auth": "^1.1.0",
"@s21toolkit/client-schema": "^76.2.1"
},
"peerDependencies": {
"graphql-request": "^6.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@s21toolkit/shared": "^1.4.3",
"@total-typescript/ts-reset": "^0.5.1",
"graphql-request": "^6.1.0",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"main": "build/index.js",
"types": "build/index.d.ts"
}