@serviceme/devtools-cli 0.0.3
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/LICENSE.md +46 -0
- package/README.md +52 -0
- package/dist/bridgeServer.js +10311 -0
- package/dist/cli.js +12426 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@serviceme/devtools-cli",
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"description": "Unified SERVICEME CLI for automation, project scaffolding, and bridge-based tooling.",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/medalsoftchina/ms-devtools-vscode"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/medalsoftchina/ms-devtools-vscode#readme",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/medalsoftchina/ms-devtools-vscode/issues"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"serviceme",
|
|
16
|
+
"ms-devtools",
|
|
17
|
+
"cli",
|
|
18
|
+
"automation",
|
|
19
|
+
"bridge"
|
|
20
|
+
],
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=18"
|
|
23
|
+
},
|
|
24
|
+
"main": "dist/cli.js",
|
|
25
|
+
"exports": {
|
|
26
|
+
".": "./dist/cli.js",
|
|
27
|
+
"./package.json": "./package.json"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist",
|
|
31
|
+
"README.md",
|
|
32
|
+
"LICENSE.md"
|
|
33
|
+
],
|
|
34
|
+
"bin": {
|
|
35
|
+
"serviceme": "dist/cli.js"
|
|
36
|
+
},
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"access": "public",
|
|
39
|
+
"registry": "https://registry.npmjs.org/"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@types/node": "^24",
|
|
43
|
+
"tsup": "^8.5.1",
|
|
44
|
+
"typescript": "^5.9.3",
|
|
45
|
+
"@serviceme/devtools-core": "0.0.3",
|
|
46
|
+
"@serviceme/devtools-protocol": "0.0.3"
|
|
47
|
+
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"build": "tsup --config tsup.config.ts",
|
|
50
|
+
"release:check": "pnpm run test && npm pack --dry-run",
|
|
51
|
+
"test": "pnpm run build && node --test",
|
|
52
|
+
"pack": "npm pack",
|
|
53
|
+
"publish:npm": "pnpm publish --access public --no-git-checks",
|
|
54
|
+
"version:update": "node scripts/update-version.js",
|
|
55
|
+
"watch": "tsup --config tsup.config.ts --watch",
|
|
56
|
+
"typecheck": "tsc --noEmit"
|
|
57
|
+
}
|
|
58
|
+
}
|