@serviceme/devtools-core 0.1.6 → 0.1.8
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/dist/index.d.mts +127 -75
- package/dist/index.d.ts +127 -75
- package/dist/index.js +214 -137
- package/dist/index.mjs +209 -139
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serviceme/devtools-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Reusable Node.js core capabilities powering the SERVICEME CLI and integrations.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"repository": {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"comment-json": "^4.5.1",
|
|
37
37
|
"json5": "^2.2.3",
|
|
38
38
|
"yauzl": "^3.2.0",
|
|
39
|
-
"@serviceme/devtools-protocol": "0.1.
|
|
39
|
+
"@serviceme/devtools-protocol": "0.1.8"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/node": "^24",
|
|
@@ -47,7 +47,9 @@
|
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
49
49
|
"watch": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
50
|
+
"lint": "biome check src test",
|
|
50
51
|
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
52
|
+
"typecheck": "tsc --noEmit",
|
|
51
53
|
"test": "pnpm run build && node --test test/**/*.test.js && node --import tsx --test src/**/__tests__/**/*.test.ts",
|
|
52
54
|
"release:check": "pnpm run build && npm pack --dry-run",
|
|
53
55
|
"pack": "npm pack",
|