go-go-scope 1.0.0

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 ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "go-go-scope",
3
+ "version": "1.0.0",
4
+ "description": "Structured concurrency for TypeScript using Explicit Resource Management",
5
+ "main": "./dist/index.cjs",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.mts",
8
+ "exports": {
9
+ "require": {
10
+ "types": "./dist/index.d.cts",
11
+ "default": "./dist/index.cjs"
12
+ },
13
+ "import": {
14
+ "types": "./dist/index.d.mts",
15
+ "default": "./dist/index.mjs"
16
+ }
17
+ },
18
+ "type": "module",
19
+ "scripts": {
20
+ "build": "pkgroll",
21
+ "lint": "biome check --write src/",
22
+ "test": "npm run build && npm run lint && vitest run",
23
+ "test:watch": "vitest",
24
+ "jaeger:up": "docker compose up -d",
25
+ "jaeger:down": "docker compose down",
26
+ "example:jaeger": "npm run build && node examples/jaeger-tracing.ts",
27
+ "prepublishOnly": "npm test",
28
+ "publish:patch": "npm version patch && npm publish",
29
+ "publish:minor": "npm version minor && npm publish",
30
+ "publish:major": "npm version major && npm publish"
31
+ },
32
+ "keywords": [
33
+ "structured-concurrency",
34
+ "async",
35
+ "disposable",
36
+ "using",
37
+ "typescript"
38
+ ],
39
+ "author": "thelinuxlich",
40
+ "license": "MIT",
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "git+https://github.com/thelinuxlich/go-go-scope.git"
44
+ },
45
+ "bugs": {
46
+ "url": "https://github.com/thelinuxlich/go-go-scope/issues"
47
+ },
48
+ "homepage": "https://github.com/thelinuxlich/go-go-scope#readme",
49
+ "files": [
50
+ "dist/",
51
+ "README.md",
52
+ "LICENSE"
53
+ ],
54
+ "devDependencies": {
55
+ "@biomejs/biome": "^2.3.15",
56
+ "@opentelemetry/exporter-trace-otlp-http": "^0.211.0",
57
+ "@opentelemetry/resources": "^2.5.0",
58
+ "@opentelemetry/sdk-node": "^0.211.0",
59
+ "@opentelemetry/semantic-conventions": "^1.39.0",
60
+ "@types/debug": "^4.1.12",
61
+ "@types/node": "^24",
62
+ "effect": "^3.19.16",
63
+ "pkgroll": "^2.24.1",
64
+ "typescript": "^5.9.3",
65
+ "vitest": "^4.0.18"
66
+ },
67
+ "dependencies": {
68
+ "@opentelemetry/api": "^1.9.0",
69
+ "debug": "^4.4.3"
70
+ }
71
+ }