forked from s21toolkit/s21auto-client-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.08 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
38
39
40
41
42
43
44
{
"name": "@s21toolkit/auth",
"description": "Auth library for platform.21-school.ru",
"version": "1.2.1",
"type": "module",
"scripts": {
"build": "pnpm lint && pnpm build:tsup",
"lint:tsc": "tsc",
"watch": "tsup --watch",
"lint": "pnpm lint:biome && pnpm lint:tsc",
"prepublishOnly": "pnpm build",
"release": "npm version -m 'chore(release): %s' --",
"postversion": "git push && git push --tags",
"build:tsup": "tsup",
"lint:biome": "biome check .",
"fix:biome": "biome check --write .",
"fix": "pnpm fix:biome"
},
"files": [
"build/*",
"README.md"
],
"dependencies": {
"@s21toolkit/shared": "^1.4.8",
"uuid": "^13.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@total-typescript/ts-reset": "^0.6.1",
"tsup": "8.4.0",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/s21toolkit/s21auth.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts"
}