@saptools/cf-live-trace 0.1.0 → 0.1.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.
- package/package.json +14 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saptools/cf-live-trace",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Inject a runtime HTTP trace hook into SAP BTP Cloud Foundry Node.js apps and stream request/response events from the CLI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -24,15 +24,6 @@
|
|
|
24
24
|
"engines": {
|
|
25
25
|
"node": ">=20.0.0"
|
|
26
26
|
},
|
|
27
|
-
"scripts": {
|
|
28
|
-
"build": "tsup",
|
|
29
|
-
"typecheck": "tsc --noEmit",
|
|
30
|
-
"lint": "eslint src tests --ignore-pattern tests/e2e/fixtures/fake-cf.mjs --ignore-pattern tests/e2e/fixtures/inspectable-app.mjs",
|
|
31
|
-
"cspell": "cspell --config ../../.cspell.json \"src/**/*.ts\" \"tests/**/*.ts\" README.md package.json",
|
|
32
|
-
"test:unit": "vitest run --coverage",
|
|
33
|
-
"test:e2e": "pnpm build && playwright test",
|
|
34
|
-
"check": "pnpm cspell && pnpm lint && pnpm typecheck && pnpm test:unit && pnpm test:e2e"
|
|
35
|
-
},
|
|
36
27
|
"keywords": [
|
|
37
28
|
"sap",
|
|
38
29
|
"cloud-foundry",
|
|
@@ -57,14 +48,23 @@
|
|
|
57
48
|
"url": "https://github.com/dongitran/saptools/issues"
|
|
58
49
|
},
|
|
59
50
|
"dependencies": {
|
|
60
|
-
"
|
|
61
|
-
"@saptools/cf-
|
|
62
|
-
"
|
|
51
|
+
"commander": "^13.0.0",
|
|
52
|
+
"@saptools/cf-inspector": "0.4.3",
|
|
53
|
+
"@saptools/cf-sync": "0.4.12"
|
|
63
54
|
},
|
|
64
55
|
"devDependencies": {
|
|
65
56
|
"@playwright/test": "^1.50.0",
|
|
66
57
|
"@vitest/coverage-v8": "^3.0.0",
|
|
67
58
|
"tsup": "^8.3.0",
|
|
68
59
|
"vitest": "^3.0.0"
|
|
60
|
+
},
|
|
61
|
+
"scripts": {
|
|
62
|
+
"build": "tsup",
|
|
63
|
+
"typecheck": "tsc --noEmit",
|
|
64
|
+
"lint": "eslint src tests --ignore-pattern tests/e2e/fixtures/fake-cf.mjs --ignore-pattern tests/e2e/fixtures/inspectable-app.mjs",
|
|
65
|
+
"cspell": "cspell --config ../../.cspell.json \"src/**/*.ts\" \"tests/**/*.ts\" README.md package.json",
|
|
66
|
+
"test:unit": "vitest run --coverage",
|
|
67
|
+
"test:e2e": "pnpm build && playwright test",
|
|
68
|
+
"check": "pnpm cspell && pnpm lint && pnpm typecheck && pnpm test:unit && pnpm test:e2e"
|
|
69
69
|
}
|
|
70
|
-
}
|
|
70
|
+
}
|