-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.7 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
65
66
67
68
69
70
71
72
73
{
"name": "@nasriya/logify",
"version": "1.0.4",
"description": "Versatile logging package for seamless integration and comprehensive error tracking.",
"main": "./dist/cjs/main.js",
"module": "./dist/esm/main.js",
"types": "./dist/@types/main.d.ts",
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": "./dist/esm/main.js",
"require": "./dist/cjs/main.js",
"types": "./dist/@types/main.d.ts"
}
},
"publishConfig": {
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/nasriyasoftware/Logify"
},
"maintainers": [
{
"name": "Ahmad Nasriya",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/ahmadnasriya/"
}
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs && postbuild",
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"postbuild-init": "postbuild-init",
"test": "jest"
},
"keywords": [
"Logging",
"Error tracking",
"Debugging",
"Performance monitoring",
"Versatile",
"Integration",
"Development",
"Utility",
"JavaScript",
"Node.js",
"Package",
"Library",
"Error handling",
"Robust",
"Customizable"
],
"author": "Nasriya Software, LLC.",
"license": "Nasriya License",
"devDependencies": {
"@nasriya/postbuild": "^1.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/node-cron": "^3.0.11",
"@types/node-schedule": "^2.1.7",
"ts-jest": "^29.1.4"
},
"dependencies": {
"@nasriya/cron": "^1.0.2"
},
"funding": {
"type": "individual",
"url": "https://fund.nasriya.net/"
}
}