@saptools/cf-inspector 0.2.0 → 0.2.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/dist/index.js +0 -0
  2. package/package.json +11 -11
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saptools/cf-inspector",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Set breakpoints, capture variable snapshots, and evaluate expressions on a SAP BTP Cloud Foundry Node.js app via the Chrome DevTools Protocol — agent-friendly, no IDE required.",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -24,13 +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/sample-app.mjs",
31
- "test:unit": "vitest run --coverage",
32
- "test:e2e": "playwright test"
33
- },
34
27
  "keywords": [
35
28
  "sap",
36
29
  "cloud-foundry",
@@ -57,9 +50,9 @@
57
50
  "url": "https://github.com/dongitran/saptools/issues"
58
51
  },
59
52
  "dependencies": {
60
- "@saptools/cf-debugger": "workspace:*",
61
53
  "commander": "^13.0.0",
62
- "ws": "^8.18.0"
54
+ "ws": "^8.18.0",
55
+ "@saptools/cf-debugger": "0.1.3"
63
56
  },
64
57
  "devDependencies": {
65
58
  "@playwright/test": "^1.50.0",
@@ -67,5 +60,12 @@
67
60
  "@vitest/coverage-v8": "^3.0.0",
68
61
  "tsup": "^8.3.0",
69
62
  "vitest": "^3.0.0"
63
+ },
64
+ "scripts": {
65
+ "build": "tsup",
66
+ "typecheck": "tsc --noEmit",
67
+ "lint": "eslint src tests --ignore-pattern tests/e2e/fixtures/sample-app.mjs",
68
+ "test:unit": "vitest run --coverage",
69
+ "test:e2e": "playwright test"
70
70
  }
71
- }
71
+ }