devtools-tracing 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +9 -4
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # devtools-tracing
2
+
3
+ Slightly trimmed down re-export of tracing related utilities from
4
+ [devtools-frontend](https://github.com/ChromeDevTools/devtools-frontend).
package/package.json CHANGED
@@ -1,14 +1,19 @@
1
1
  {
2
2
  "name": "devtools-tracing",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Utilities for working with trace files",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "start": "tsx index.ts",
8
- "test": "echo \"Error: no test specified\" && exit 1",
9
- "postinstall": "patch-package"
8
+ "postinstall": "patch-package",
9
+ "generate": "tsx generate.ts",
10
+ "example:inp": "tsx examples/inp.ts"
11
+ },
12
+ "author": "Samuel Maddock <sam@samuelmaddock.com>",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+ssh://git@github.com/samuelmaddock/devtools-tracing.git"
10
16
  },
11
- "author": "",
12
17
  "license": "ISC",
13
18
  "devDependencies": {
14
19
  "@typescript-eslint/typescript-estree": "^8.46.2",