vr-commons 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +93 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+
package/package.json ADDED
@@ -0,0 +1,93 @@
1
+ {
2
+ "name": "vr-commons",
3
+ "version": "1.0.3",
4
+ "description": "Shared functions package",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "dist/**/*"
9
+ ],
10
+ "scripts": {
11
+ "clean": "rimraf dist",
12
+ "build": "npm run clean && tsc",
13
+ "test": "jest",
14
+ "version": "npm run build && git add -A dist",
15
+ "pub": "git add . && git commit -m \"Version update\" && npm version patch && npm publish && git push && git push --tags",
16
+ "prepublishOnly": "npm run build",
17
+ "postpublish": "git push && git push --tags"
18
+ },
19
+ "keywords": [
20
+ "middleware",
21
+ "validation",
22
+ "utilities",
23
+ "express"
24
+ ],
25
+ "author": "kanu-cast",
26
+ "license": "ISC",
27
+ "peerDependencies": {
28
+ "axios": "^0.x || ^1.x",
29
+ "bcryptjs": "^1.x || ^2.x || ^3.x || ^4.x || ^5.x",
30
+ "date-fns": "^1.x || ^2.x || ^3.x || ^4.x || ^5.x",
31
+ "express": "^4.x || ^5.x || ^6.x",
32
+ "vr-models": "^1.x || ^2.x || ^3.x || ^4.x || ^5.x",
33
+ "jsonwebtoken": "^8.x || ^9.x || ^10.x",
34
+ "ua-parser-js": "^0.x || ^1.x || ^2.x",
35
+ "zod": "^3.x || ^4.x || ^5.x"
36
+ },
37
+ "peerDependenciesMeta": {
38
+ "axios": {
39
+ "optional": true
40
+ },
41
+ "bcryptjs": {
42
+ "optional": true
43
+ },
44
+ "date-fns": {
45
+ "optional": true
46
+ },
47
+ "express": {
48
+ "optional": true
49
+ },
50
+ "vr-models": {
51
+ "optional": true
52
+ },
53
+ "jsonwebtoken": {
54
+ "optional": true
55
+ },
56
+ "ua-parser-js": {
57
+ "optional": true
58
+ },
59
+ "zod": {
60
+ "optional": true
61
+ },
62
+ "dot-env": {
63
+ "optional": false
64
+ }
65
+ },
66
+ "devDependencies": {
67
+ "@types/axios": "^0.14.4",
68
+ "@types/bcryptjs": "^2.4.2",
69
+ "@types/date-fns": "^2.6.3",
70
+ "@types/express": "^5.0.2",
71
+ "@types/jsonwebtoken": "^9.0.9",
72
+ "@types/node": "^22.15.21",
73
+ "@types/nodemailer": "^6.4.17",
74
+ "@types/ua-parser-js": "^0.7.36",
75
+ "@types/uuid": "^10.0.0",
76
+ "axios": "^1.9.0",
77
+ "date-fns": "^4.1.0",
78
+ "vr-models": "^1.0.6",
79
+ "rimraf": "^5.0.5",
80
+ "typescript": "^5.3.3",
81
+ "zod": "^3.25.20"
82
+ },
83
+ "dependencies": {
84
+ "@types/cookie": "^1.0.0",
85
+ "@types/socket.io": "^3.0.2",
86
+ "csv-stringify": "^6.5.2",
87
+ "csv-writer": "^1.6.0",
88
+ "dayjs": "^1.11.13",
89
+ "google-auth-library": "^9.15.1",
90
+ "nodemailer": "^7.0.3",
91
+ "socket.io": "^4.8.1"
92
+ }
93
+ }