-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 1019 Bytes
/
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
{
"name": "@jessitronica/hny-otel-web",
"version": "0.10.2",
"description": "can i make a package and publish it and use it from html",
"source": "src/index.html",
"main": "dist/hny.js",
"files": [
"README.md",
"src/*"
],
"scripts": {
"esbuild": "esbuild src/hny.js --bundle --format=iife --platform=browser",
"build": "npm run esbuild -- --outfile=dist/hny.js",
"dist": "npm run esbuild -- --outfile=dist/hny.min.js --minify",
"watch": "npm run esbuild -- --outfile=dist/hny.js --watch",
"futz": "npm run build && cp src/index.html dist && http-server dist"
},
"author": "Jessica Kerr <jessitron@honeycomb.io>",
"homepage": "https://github.com/jessitron/hny-otel-web",
"license": "ISC",
"dependencies": {
"@honeycombio/opentelemetry-web": "^0.13.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-web": "^0.45.0"
},
"devDependencies": {
"esbuild": "^0.25.0",
"http-server": "^14.1.1",
"process": "^0.11.10"
}
}