-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.53 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@carlosnunezmx/aru",
"module": "dist/index.js",
"type": "module",
"main": "dist/index.js",
"types": "./types/index.d.ts",
"description": "Just another UdeG Leo Wrapper",
"version": "0.8.5",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/CarlosNunezMX/aru/issues"
},
"exports": {
".": {
"default": "./dist/index.js",
"types": "./types/index.d.ts"
},
"./auth": {
"default": "./dist/auth/index.js",
"types": "./types/auth/index.d.ts"
},
"./error": {
"default": "./dist/error/index.js",
"types": "./types/error/index.d.ts"
},
"./student": {
"default": "./dist/student/index.js",
"types": "./types/student/index.d.ts"
},
"./info": {
"default": "./dist/info/index.js",
"types": "./types/info/index.d.ts"
},
"./kardex": {
"default": "./dist/kardex/index.js",
"types": "./types/kardex/index.d.ts"
},
"./oferta": {
"default": "./dist/centros/index.js",
"types": "./types/centros/index.d.ts"
}
},
"homepage": "https://github.com/CarlosNunezMX/aru",
"author": {
"email": "[email protected]",
"url": "https://carlosnunezmx.tech",
"name": "CarlosNuñezMX"
},
"scripts": {
"build": "tsc"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bun": "latest",
"typescript": "^5.4.5"
},
"peerDependencies": {
"typescript": "^5.0.0",
"@types/bcrypt": "^5.0.2"
},
"dependencies": {
"bcrypt": "^5.1.1"
}
}