-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.17 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
{
"name": "@carlosnunezmx/aru",
"version": "2.4.2",
"author": {
"email": "carlitosnu41@gmail.com",
"url": "https://carlosnunezmx.qzz.io",
"name": "CarlosNuñezMX"
},
"main": "source/index.ts",
"module": "source/index.ts",
"devDependencies": {
"@types/bun": "^1.3.8",
"@types/jsonwebtoken": "^9.0.10",
"tsc-alias": "^1.8.16",
"tsup": "^8.5.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"optionalDependencies": {
"bcrypt": "^5.1.1"
},
"bugs": {
"email": "carlitosnu41@gmail.com",
"url": "https://github.com/CarlosNunezMX/aru/issues"
},
"description": "Just another UdeG Leo Wrapper",
"homepage": "https://github.com/CarlosNunezMX/aru",
"type": "module",
"dependencies": {
"@types/bcrypt": "^6.0.0",
"jsonwebtoken": "^9.0.2"
},
"private": true,
"scripts": {
"build": "tsup",
"clean": "rm -rf dist"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./modules": {
"import": "./dist/modules/index.js",
"types": "./dist/modules/index.d.ts"
},
"./types": {
"types": "./source/interfaces/*.d.ts"
}
}
}