-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "autogestion-frvm",
"version": "1.4.0",
"description": "An API wrapper for UTN FRVM's Autogestion platform.",
"repository": {
"type": "git",
"url": "git+https://github.com/punteroo/autogestion-frvm.git"
},
"scripts": {
"build": "rimraf dist && tsc"
},
"keywords": [
"autogestion",
"utn",
"frvm",
"utn",
"frvm"
],
"author": "Lucas 'puntero' Maza",
"license": "ISC",
"bugs": {
"url": "https://github.com/punteroo/autogestion-frvm/issues"
},
"homepage": "https://github.com/punteroo/autogestion-frvm#readme",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./client": "./dist/packages/client/index.js",
"./courses": "./dist/packages/course/index.js",
"./polling": "./dist/packages/polling/index.js",
"./exams": "./dist/packages/exam/index.js",
"./types": "./dist/types/index.js"
},
"dependencies": {
"axios": "^1.4.0",
"tslib": "^2.6.1"
},
"devDependencies": {
"@types/node": "^20.5.6",
"rimraf": "^5.0.5",
"typescript": "^5.1.6"
}
}