vedatrace 0.1.0 → 0.1.4
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.
- package/package.json +141 -133
package/package.json
CHANGED
|
@@ -1,135 +1,143 @@
|
|
|
1
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
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
2
|
+
"name": "vedatrace",
|
|
3
|
+
"description": "Universal JavaScript logging SDK for VedaTrace - type-safe, lightweight, and developer-friendly",
|
|
4
|
+
"version": "0.1.4",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"setup": "rm -rf node_modules && npm i && git init && husky",
|
|
7
|
+
"prepublishOnly": "npm run build",
|
|
8
|
+
"build": "pkgroll --clean-dist",
|
|
9
|
+
"test": "vitest --run",
|
|
10
|
+
"lint": "npx @biomejs/biome check --write",
|
|
11
|
+
"changeset": "changeset",
|
|
12
|
+
"version": "changeset version",
|
|
13
|
+
"release": "bun run build && changeset publish",
|
|
14
|
+
"ci:version": "changeset version",
|
|
15
|
+
"ci:publish": "bun run build && changeset publish --provenance"
|
|
16
|
+
},
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"provenance": true,
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
24
|
+
"lint-staged": {
|
|
25
|
+
"*.{ts,tsx}": [
|
|
26
|
+
"npm run lint"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"type": "module",
|
|
30
|
+
"main": "./dist/index.cjs",
|
|
31
|
+
"module": "./dist/index.mjs",
|
|
32
|
+
"types": "./dist/index.d.cts",
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"require": {
|
|
36
|
+
"types": "./dist/index.d.cts",
|
|
37
|
+
"default": "./dist/index.cjs"
|
|
38
|
+
},
|
|
39
|
+
"import": {
|
|
40
|
+
"types": "./dist/index.d.mts",
|
|
41
|
+
"default": "./dist/index.mjs"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"./express": {
|
|
45
|
+
"require": {
|
|
46
|
+
"types": "./dist/integrations/express.d.cts",
|
|
47
|
+
"default": "./dist/integrations/express.cjs"
|
|
48
|
+
},
|
|
49
|
+
"import": {
|
|
50
|
+
"types": "./dist/integrations/express.d.mts",
|
|
51
|
+
"default": "./dist/integrations/express.mjs"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"./next": {
|
|
55
|
+
"require": {
|
|
56
|
+
"types": "./dist/integrations/nextjs.d.cts",
|
|
57
|
+
"default": "./dist/integrations/nextjs.cjs"
|
|
58
|
+
},
|
|
59
|
+
"import": {
|
|
60
|
+
"types": "./dist/integrations/nextjs.d.mts",
|
|
61
|
+
"default": "./dist/integrations/nextjs.mjs"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"./react": {
|
|
65
|
+
"require": {
|
|
66
|
+
"types": "./dist/integrations/react.d.cts",
|
|
67
|
+
"default": "./dist/integrations/react.cjs"
|
|
68
|
+
},
|
|
69
|
+
"import": {
|
|
70
|
+
"types": "./dist/integrations/react.d.mts",
|
|
71
|
+
"default": "./dist/integrations/react.mjs"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"./transports": {
|
|
75
|
+
"require": {
|
|
76
|
+
"types": "./dist/transports/index.d.cts",
|
|
77
|
+
"default": "./dist/transports/index.cjs"
|
|
78
|
+
},
|
|
79
|
+
"import": {
|
|
80
|
+
"types": "./dist/transports/index.d.mts",
|
|
81
|
+
"default": "./dist/transports/index.mjs"
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"keywords": [
|
|
86
|
+
"logging",
|
|
87
|
+
"logs",
|
|
88
|
+
"observability",
|
|
89
|
+
"monitoring",
|
|
90
|
+
"typescript",
|
|
91
|
+
"javascript",
|
|
92
|
+
"cloudflare",
|
|
93
|
+
"edge",
|
|
94
|
+
"serverless"
|
|
95
|
+
],
|
|
96
|
+
"devDependencies": {
|
|
97
|
+
"@biomejs/biome": "^2.3.14",
|
|
98
|
+
"@changesets/cli": "^2.29.8",
|
|
99
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
100
|
+
"execa": "^9.6.1",
|
|
101
|
+
"husky": "^9.1.7",
|
|
102
|
+
"lint-staged": "^16.2.7",
|
|
103
|
+
"pkgroll": "^2.23.0",
|
|
104
|
+
"react": "^19.2.4",
|
|
105
|
+
"tsup": "^8.5.1",
|
|
106
|
+
"tsx": "^4.21.0",
|
|
107
|
+
"typescript": "^5.9.3",
|
|
108
|
+
"vitest": "^4.0.18"
|
|
109
|
+
},
|
|
110
|
+
"peerDependencies": {
|
|
111
|
+
"express": "latest",
|
|
112
|
+
"react": ">=16.8.0",
|
|
113
|
+
"@types/express": "^5.0.6",
|
|
114
|
+
"@types/react": "^19.2.13"
|
|
115
|
+
},
|
|
116
|
+
"peerDependenciesMeta": {
|
|
117
|
+
"react": {
|
|
118
|
+
"optional": true
|
|
119
|
+
},
|
|
120
|
+
"express": {
|
|
121
|
+
"optional": true
|
|
122
|
+
},
|
|
123
|
+
"@types/express": {
|
|
124
|
+
"optional": true
|
|
125
|
+
},
|
|
126
|
+
"@types/react": {
|
|
127
|
+
"optional": true
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"repository": {
|
|
131
|
+
"type": "git",
|
|
132
|
+
"url": "git+https://github.com/kurtiz/vedatrace-npm.git"
|
|
133
|
+
},
|
|
134
|
+
"bugs": {
|
|
135
|
+
"url": "https://github.com/kurtiz/vedatrace-npm/issues"
|
|
136
|
+
},
|
|
137
|
+
"author": {
|
|
138
|
+
"name": "Aaron Will Djaba",
|
|
139
|
+
"email": "aaronwilldjaba@outlook.com",
|
|
140
|
+
"url": "https://iamaaronwilldjaba.me"
|
|
141
|
+
},
|
|
142
|
+
"license": "MIT"
|
|
135
143
|
}
|