-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 936 Bytes
/
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
{
"name": "leo-wrapper",
"description": "Un cliente de Nodejs (server) para el API de LEO (Universidad de Guadalajara)",
"version": "1.0.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"url": "https://github.com/notroaloch/leo-wrapper"
},
"scripts": {
"dev": "nodemon run.ts",
"lint": "tsc",
"build": "tsup src/index.ts --format cjs,esm --dts"
},
"keywords": [
"api",
"wrapper",
"udg",
"leo",
"microleo"
],
"author": "notroaloch",
"license": "MIT",
"devDependencies": {
"eslint": "^9.9.0",
"prettier": "^3.3.3",
"@eslint/js": "^9.9.0",
"@types/bcrypt": "^5.0.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0",
"tsup": "^8.2.1",
"globals": "^15.9.0",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2"
},
"dependencies": {
"axios": "^1.7.2",
"bcrypt": "^5.1.1"
}
}