-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.12 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
{
"name": "kreta.js",
"version": "2.0.0",
"description": "Advanced and easy-to-use object-oriented module for the Student, Guardian and Teacher Kreta API.",
"main": "dist/index.js",
"types": "dist",
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"build:test": "npm run build && npm run test",
"run": "node dist/index.js",
"test": "node test/index.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/blazsmaster/kreta.js.git"
},
"bugs": {
"url": "https://github.com/blazsmaster/kreta.js/issues"
},
"author": "blazsmaster <64538277+blazsmaster@users.noreply.github.com>",
"license": "MIT",
"keywords": [
"wrapper",
"rest-api",
"api-wrapper",
"kreta",
"ekreta",
"e-kreta",
"ekreta-api",
"kreta-api"
],
"engines": {
"node": ">=14.21.3"
},
"packageManager": "yarn@1.22.22",
"dependencies": {
"axios": "^1.6.8",
"class-validator": "^0.14.1",
"form-data": "^4.0.0",
"jwt-decode": "^4.0.0"
},
"devDependencies": {
"@types/node": "^18.15.11",
"typescript": "^5.0.3"
}
}