-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.06 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.06 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
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
{
"name": "@o-ancpplua/otel-conventions-api",
"version": "0.1.0",
"description": "TypeSpec library projecting OpenTelemetry semantic conventions into a reusable API surface. Distributed under the ANcpLua namespace via GitHub Packages; not an official OpenTelemetry artifact.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/O-ANcppLua/ANcpLua.OtelConventions.Api.git"
},
"homepage": "https://github.com/O-ANcppLua/ANcpLua.OtelConventions.Api#readme",
"bugs": {
"url": "https://github.com/O-ANcppLua/ANcpLua.OtelConventions.Api/issues"
},
"keywords": [
"typespec",
"opentelemetry",
"semantic-conventions",
"otel",
"ancplua"
],
"type": "module",
"exports": {
".": "./index.tsp",
"./otel": "./otel/otel-conventions.tsp",
"./models/*": "./models/*.tsp",
"./models/agent/*": "./models/agent/*.tsp",
"./common/*": "./common/*.tsp",
"./api/*": "./api/*.tsp",
"./intelligence/*": "./intelligence/*.tsp",
"./intelligence/seed/*": "./intelligence/seed/*.tsp",
"./generated/otel-keys": "./generated/otel-keys.gen.tsp"
},
"files": [
"index.tsp",
"api/**/*.tsp",
"common/**/*.tsp",
"intelligence/**/*.tsp",
"models/**/*.tsp",
"otel/**/*.tsp",
"generated/**/*.tsp",
"generated/README.md",
"tspconfig.yaml",
"README.md",
"VERSIONING.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"build:emitters": "tsc -p emitters/csharp && tsc -p emitters/duckdb && tsc -p emitters/ts-types && tsc -p emitters/otelconventions-lint",
"compile": "npm run build:emitters && tsp compile main.tsp",
"watch": "tsp compile main.tsp --watch",
"format": "tsp format **/*.tsp",
"lint": "npm run build:emitters && tsp compile main.tsp --no-emit --warn-as-error",
"lint:public": "tsp compile index.tsp --no-emit --warn-as-error"
},
"peerDependencies": {
"@typespec/compiler": "^1.11.0 || >=1.12.0-dev.0"
},
"devDependencies": {
"@ancplua/typespec-emit-csharp": "file:./emitters/csharp",
"@ancplua/typespec-emit-duckdb": "file:./emitters/duckdb",
"@ancplua/typespec-emit-ts-types": "file:./emitters/ts-types",
"@ancplua/typespec-otelconventions-lint": "file:./emitters/otelconventions-lint",
"@types/node": "25.9.1",
"@typespec/compiler": "1.12.0",
"@typespec/events": "0.82.0",
"@typespec/http": "1.12.0",
"@typespec/http-server-csharp": "0.58.0-dev.3",
"@typespec/json-schema": "1.12.0",
"@typespec/openapi": "1.12.0",
"@typespec/openapi3": "1.12.0",
"@typespec/rest": "0.82.0",
"@typespec/sse": "0.82.0",
"@typespec/streams": "0.82.0",
"@typespec/versioning": "0.82.0",
"typescript": "6.0.3",
"vitest": "4.1.7"
},
"dependencies": {
"@azure-tools/typespec-azure-core": "^0.68.0-dev.5",
"@azure-tools/typespec-client-generator-core": "^0.68.0-dev.18",
"@typespec/http-client-csharp": "^1.0.0-alpha.20260501.5",
"@typespec/xml": "^0.82.0-dev.2"
}
}