topodraft-cli 0.1.0

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 (5) hide show
  1. package/LICENSE +202 -0
  2. package/NOTICE +2 -0
  3. package/README.md +28 -0
  4. package/dist/cli.js +1692 -0
  5. package/package.json +34 -0
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "topodraft-cli",
3
+ "version": "0.1.0",
4
+ "license": "Apache-2.0",
5
+ "description": "Validate TopoDraft topology files (*.topo.json) from the command line — the same diagnostics as the VSCode extension, for headless use and AI agents.",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/kazukifujiwara/network-topo-draft.git",
9
+ "directory": "packages/cli"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/kazukifujiwara/network-topo-draft/issues"
13
+ },
14
+ "homepage": "https://github.com/kazukifujiwara/network-topo-draft#readme",
15
+ "bin": {
16
+ "topodraft": "./dist/cli.js"
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "README.md",
21
+ "NOTICE"
22
+ ],
23
+ "engines": {
24
+ "node": ">=20"
25
+ },
26
+ "scripts": {
27
+ "build": "node build.mjs",
28
+ "typecheck": "tsc --noEmit"
29
+ },
30
+ "devDependencies": {
31
+ "@topodraft/core": "0.0.1",
32
+ "jsonc-parser": "^3.3.1"
33
+ }
34
+ }