-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "otelmariohtml5",
"version": "1.0.0",
"description": "This is a clone of Infinite Mario, written in JavaScript for web browsers using HTML5.",
"default": "main.html",
"scripts": {
"build": "parcel build --no-cache main.html"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@honeycombio/opentelemetry-web": "^0.5.0",
"@opentelemetry/auto-instrumentations-web": "^0.40.0",
"@opentelemetry/instrumentation-document-load": "^0.39.0",
"@opentelemetry/instrumentation-fetch": "^0.52.1",
"@opentelemetry/instrumentation-user-interaction": "^0.39.0",
"@opentelemetry/instrumentation-xml-http-request": "^0.52.1"
},
"devDependencies": {
"parcel": "^2.12.0",
"parcel-plugin-static-files-copy": "^2.6.0",
"process": "^0.11.10"
},
"staticFiles": {
"staticPath": [
{
"staticPath": "./images",
"staticOutDir": "./images"
},
{
"staticPath": "./midi",
"staticOutDir": "./midi"
},
{
"staticPath": "./sounds",
"staticOutDir": "./sounds"
}
],
"watcherGlob": "**"
}
}