-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.67 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@studentsphere/linkgor",
"version": "1.0.3",
"description": "A Wrapper for Wigor",
"author": "Kaelian Baudelet <contact@kaelian.dev> (https://github.com/kaelianbaudelet)",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/studentsphere-app/linkgor.git"
},
"keywords": [
"javascript",
"typescript",
"wrapper",
"cd",
"igensia",
"profile",
"wigor",
"timetable",
"studentsphere"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts",
"docs": "typedoc",
"example:auth": "tsx examples/authentication.example.ts",
"example:timetable": "tsx examples/timetable.example.ts",
"example:profile": "tsx examples/profile.example.ts",
"prepare": "lefthook install",
"format": "biome format --write .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@inquirer/prompts": "^8.5.2",
"@types/node": "^25.9.1",
"chalk": "^5.6.2",
"lefthook": "^2.1.9",
"tsup": "^8.5.1",
"tsx": "^4.22.4",
"typedoc": "^0.28.19",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@11.5.1+sha512.93f7b57422ea7068257235b4c16eb60762eb68e1dc23723199cc739043ea9be2c4143274a399d8c6defa2b1176226d9ca1c4b63482d6200c1a8fbaa78c1d1485"
}