-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
43 lines (43 loc) · 1.66 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
{
"name": "@dylibso/observe-sdk-honeycomb",
"version": "0.2.0",
"description": "A library that produces function tracing to honeycomb",
"directories": {
"test": "test"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
"workerd": "./dist/workerd/index.js",
"default": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"build:esm": "node ../../esbuild/esbuild.js -b -e ./index.js -o ./dist/esm/index.js -p browser -f esm",
"build:cjs": "node ../../esbuild/esbuild.js -b -e ./index.js -o ./dist/cjs/index.js -p browser -f cjs",
"build:workerd": "node ../../esbuild/esbuild.js -b -e ./index.js -o ./dist/workerd/index.js -p browser -f esm --workerd",
"build:types": "tsc -b",
"build": "npm run build:esm && npm run build:cjs && npm run build:workerd && npm run build:types",
"build:web-test": "node ../../esbuild/esbuild.js -b -e ./test/web/index.js -o ./test/web/build.js -p browser",
"test:node": "node test/node/index.js",
"test:deno": "deno run -A test/deno/index.ts",
"test:web": "npm run build:web-test && npx serve ./test/web",
"test:workerd": "npx wrangler dev -c ./test/workerd/wrangler.toml"
},
"keywords": [
"dylibso",
"honeycomb",
"tracing",
"observe",
"opentelemetry",
"otel",
"wasm",
"webassembly"
],
"author": "",
"license": "ISC"
}