@tscircuit/cli 0.0.145 → 0.0.162
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/.github/workflows/formatbot.yml +1 -1
- package/.github/workflows/release.yml +6 -1
- package/.github/workflows/test.yml +2 -2
- package/.github/workflows/typecheck.yml +29 -0
- package/DEVELOPMENT.md +4 -1
- package/README.md +2 -6
- package/{dev-server-api/src → api}/db/generic-json-level.ts +2 -5
- package/{dev-server-api/src → api/lib}/middlewares/with-db.ts +2 -2
- package/{dev-server-api → api}/routes/api/db/download.ts +1 -1
- package/{dev-server-api → api}/routes/api/dev_package_examples/create.ts +1 -1
- package/{dev-server-api → api}/routes/api/dev_package_examples/get.ts +2 -2
- package/{dev-server-api → api}/routes/api/dev_package_examples/list.ts +1 -1
- package/{dev-server-api → api}/routes/api/dev_package_examples/update.ts +3 -3
- package/{dev-server-api → api}/routes/api/dev_server/reset.ts +1 -1
- package/{dev-server-api → api}/routes/api/export_files/create.ts +2 -6
- package/{dev-server-api → api}/routes/api/export_files/download.ts +1 -3
- package/{dev-server-api → api}/routes/api/export_requests/create.ts +3 -4
- package/{dev-server-api → api}/routes/api/export_requests/get.ts +3 -6
- package/{dev-server-api → api}/routes/api/export_requests/list.ts +2 -3
- package/{dev-server-api → api}/routes/api/export_requests/update.ts +3 -5
- package/{dev-server-api/routes → api/routes/api}/health.ts +1 -1
- package/{dev-server-api → api}/routes/api/package_info/create.ts +1 -1
- package/{dev-server-api → api}/routes/api/package_info/get.ts +3 -2
- package/{dev-server-api/routes/api → api/routes}/health.ts +1 -1
- package/{dev-server-api → api}/routes/index.ts +1 -1
- package/{dev-server-api → api}/server.ts +1 -1
- package/api/static-routes.ts +24 -0
- package/{dev-server-api → api}/tests/fixtures/get-test-server.ts +2 -1
- package/api/tests/fixtures/start-server.ts +41 -0
- package/{dev-server-api → api}/tests/routes/dev_package_examples/create.test.ts +1 -1
- package/{dev-server-api → api}/tests/routes/dev_package_examples/get.test.ts +1 -1
- package/{dev-server-api → api}/tests/routes/dev_package_examples/list.test.ts +1 -1
- package/{dev-server-api → api}/tests/routes/dev_package_examples/update.test.ts +1 -1
- package/{dev-server-api → api}/tests/routes/export_files/create.test.ts +1 -1
- package/{dev-server-api → api}/tests/routes/export_files/download.test.ts +1 -1
- package/{dev-server-api → api}/tests/routes/export_requests/create.test.ts +1 -1
- package/{dev-server-api → api}/tests/routes/export_requests/get.test.ts +1 -1
- package/{dev-server-api → api}/tests/routes/export_requests/list.test.ts +1 -1
- package/{dev-server-api → api}/tests/routes/export_requests/update.test.ts +1 -1
- package/biome.json +8 -3
- package/bun.lockb +0 -0
- package/{lib → cli/lib}/cmd-fns/add.ts +1 -1
- package/{lib → cli/lib}/cmd-fns/dev/dev-server-request-handler.ts +2 -2
- package/{lib → cli/lib}/cmd-fns/dev/fulfill-export-requests.ts +13 -13
- package/{lib → cli/lib}/cmd-fns/dev/index.ts +1 -1
- package/{lib → cli/lib}/cmd-fns/dev/soupify-and-upload-example-file.ts +3 -2
- package/{lib → cli/lib}/cmd-fns/dev/start-edit-event-watcher.ts +4 -4
- package/{lib → cli/lib}/cmd-fns/dev/start-export-request-watcher.ts +1 -1
- package/{lib → cli/lib}/cmd-fns/dev/start-fs-watcher.ts +2 -1
- package/{lib → cli/lib}/cmd-fns/dev/upload-examples-from-directory.ts +3 -2
- package/{lib → cli/lib}/cmd-fns/export-gerbers.ts +1 -1
- package/cli/lib/cmd-fns/go.ts +14 -0
- package/{lib → cli/lib}/cmd-fns/index.ts +2 -0
- package/{lib → cli/lib}/cmd-fns/init/create-or-modify-npmrc.ts +1 -1
- package/{lib → cli/lib}/cmd-fns/init/get-generated-npmrc.ts +1 -1
- package/{lib → cli/lib}/cmd-fns/init/index.ts +1 -1
- package/{lib → cli/lib}/cmd-fns/install.ts +1 -1
- package/{lib → cli/lib}/cmd-fns/lint.ts +1 -1
- package/{lib → cli/lib}/cmd-fns/open.ts +1 -1
- package/{lib → cli/lib}/cmd-fns/package-examples-create.ts +1 -1
- package/{lib → cli/lib}/cmd-fns/publish/index.ts +1 -1
- package/{lib → cli/lib}/cmd-fns/remove.ts +1 -1
- package/cli/lib/cmd-fns/render.ts +45 -0
- package/{lib → cli/lib}/cmd-fns/soupify.ts +1 -1
- package/{lib → cli/lib}/cmd-fns/uninstall.ts +1 -1
- package/{lib → cli/lib}/cmd-fns/version.ts +6 -7
- package/{lib → cli/lib}/export-fns/export-bom-csv.ts +1 -1
- package/{lib → cli/lib}/export-fns/export-gerbers.ts +1 -1
- package/{lib → cli/lib}/export-fns/export-pnp-csv.ts +1 -1
- package/{lib → cli/lib}/get-program.ts +20 -4
- package/{lib → cli/lib}/param-handlers/param-handler-type.ts +1 -1
- package/{lib → cli/lib}/util/app-context.ts +1 -1
- package/{lib → cli/lib}/util/create-context-and-run-program.ts +4 -4
- package/{lib → cli/lib}/util/get-all-package-files.ts +1 -1
- package/{tests → cli/tests}/open.test.ts +2 -1
- package/{tests → cli/tests}/soupify.test.ts +1 -1
- package/dist/cli.js +302 -308
- package/example-project/package.json +2 -11
- package/{dev-server-frontend/src → frontend}/components/command-k.tsx +1 -1
- package/{dev-server-frontend/src → frontend}/components/dialogs/generic-export-dialog.tsx +3 -7
- package/{dev-server-frontend/src → frontend}/components/dialogs/gerber-export-dialog.tsx +2 -2
- package/{dev-server-frontend/src → frontend}/components/select-example-search.tsx +6 -6
- package/{dev-server-frontend/src → frontend}/components/ui/alert-dialog.tsx +2 -2
- package/{dev-server-frontend/src → frontend}/components/ui/alert.tsx +1 -1
- package/{dev-server-frontend/src → frontend}/components/ui/breadcrumb.tsx +1 -1
- package/{dev-server-frontend/src → frontend}/components/ui/button.tsx +1 -1
- package/{dev-server-frontend/src → frontend}/components/ui/card.tsx +1 -1
- package/{dev-server-frontend/src → frontend}/components/ui/command.tsx +2 -2
- package/{dev-server-frontend/src → frontend}/components/ui/context-menu.tsx +1 -1
- package/{dev-server-frontend/src → frontend}/components/ui/dialog.tsx +1 -1
- package/{dev-server-frontend/src → frontend}/components/ui/menubar.tsx +1 -1
- package/{dev-server-frontend/src → frontend}/components/ui/navigation-menu.tsx +1 -1
- package/{dev-server-frontend/src → frontend}/components/ui/popover.tsx +1 -1
- package/{dev-server-frontend/src → frontend}/components/ui/select.tsx +1 -1
- package/{dev-server-frontend/src → frontend}/components/ui/tabs.tsx +1 -1
- package/{dev-server-frontend/src → frontend}/components/ui/toggle-group.tsx +2 -2
- package/{dev-server-frontend/src → frontend}/components/ui/toggle.tsx +1 -1
- package/{dev-server-frontend/src → frontend}/components/ui/tooltip.tsx +1 -1
- package/{dev-server-frontend → frontend}/index.html +1 -1
- package/{dev-server-frontend/src → frontend}/main.tsx +1 -1
- package/{dev-server-frontend → frontend}/tailwind.config.js +3 -6
- package/frontend/views/App.tsx +22 -0
- package/{dev-server-frontend/src → frontend/views}/Header.tsx +5 -5
- package/{dev-server-frontend/src → frontend/views}/HeaderMenu.tsx +50 -17
- package/{dev-server-frontend/src/ExampleContentView.tsx → frontend/views/MainContentView.tsx} +5 -5
- package/frontend/vite.config.ts +50 -0
- package/package.json +55 -18
- package/scripts/build-cli.ts +12 -0
- package/tsconfig.json +5 -96
- package/.github/workflows/server-tests.yml +0 -31
- package/build-cli.ts +0 -14
- package/dev-server-api/bun.lockb +0 -0
- package/dev-server-api/edgespec.config.ts +0 -4
- package/dev-server-api/package.json +0 -23
- package/dev-server-api/src/db/create-schema.ts +0 -54
- package/dev-server-api/src/lib/public-mapping/public-map-export-file.ts +0 -17
- package/dev-server-api/src/lib/public-mapping/public-map-export-request.ts +0 -23
- package/dev-server-api/static-routes.ts +0 -24
- package/dev-server-api/tests/fixtures/start-server.ts +0 -20
- package/dev-server-api/tsconfig.json +0 -28
- package/dev-server-frontend/.eslintrc.cjs +0 -20
- package/dev-server-frontend/package-lock.json +0 -8970
- package/dev-server-frontend/package.json +0 -70
- package/dev-server-frontend/postcss.config.js +0 -6
- package/dev-server-frontend/src/App.tsx +0 -22
- package/dev-server-frontend/tsconfig.json +0 -29
- package/dev-server-frontend/tsconfig.node.json +0 -13
- package/dev-server-frontend/vite.config.ts +0 -23
- package/example-project/package-lock.json +0 -609
- /package/{dev-server-api → api}/README.md +0 -0
- /package/{dev-server-api/src → api}/db/get-db.ts +0 -0
- /package/{dev-server-api/src → api}/db/schema.ts +0 -0
- /package/{dev-server-api/src → api}/db/zod-level-db.ts +0 -0
- /package/{dev-server-api → api}/index.ts +0 -0
- /package/{dev-server-api/src → api/lib}/middlewares/with-debug-request-logging.ts +0 -0
- /package/{dev-server-api/src → api/lib}/middlewares/with-error-response.ts +0 -0
- /package/{dev-server-api/src → api/lib}/with-winter-spec.ts +0 -0
- /package/{dev-server-api/src → api}/lib/zod/export_parameters.ts +0 -0
- /package/{dev-server-api → api}/tests/routes/health.test.ts +0 -0
- /package/{cli.ts → cli/cli.ts} +0 -0
- /package/{lib → cli/lib}/cmd-fns/auth-login.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/auth-logout.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/auth-sessions-create.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/auth-sessions-get.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/auth-sessions-list.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/config-clear.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/config-print-config.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/config-reveal-location.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/config-set-log-requests.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/config-set-registry.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/config-set-runtime.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/config-set-session.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/dev/check-if-initialized.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/dev/derive-selector-from-pcb-component-id.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/dev/find-available-port.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/dev/get-dev-server-axios.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/dev/infer-export-name-from-source.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/dev/mark-all-examples-loading.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/dev/start-dev-server.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/dev-server-fulfill-export-requests.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/dev-server-upload.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/init/get-generated-readme.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/init/get-generated-tsconfig.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/package-examples-get.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/package-examples-list.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/package-files-create.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/package-files-download.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/package-files-get.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/package-files-list.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/package-files-upload-directory.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/package-releases-create.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/package-releases-get.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/package-releases-list.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/package-releases-update.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/packages-create.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/packages-get.ts +0 -0
- /package/{lib → cli/lib}/cmd-fns/packages-list.ts +0 -0
- /package/{lib → cli/lib}/create-config-manager.ts +0 -0
- /package/{lib → cli/lib}/param-handlers/index.ts +0 -0
- /package/{lib → cli/lib}/param-handlers/interact-for-local-directory.ts +0 -0
- /package/{lib → cli/lib}/param-handlers/interact-for-local-file.ts +0 -0
- /package/{lib → cli/lib}/param-handlers/interact-for-package-example-id.ts +0 -0
- /package/{lib → cli/lib}/param-handlers/interact-for-package-name-with-version.ts +0 -0
- /package/{lib → cli/lib}/param-handlers/interact-for-package-name.ts +0 -0
- /package/{lib → cli/lib}/param-handlers/interact-for-package-release-id.ts +0 -0
- /package/{lib → cli/lib}/param-handlers/interact-for-registry-url.ts +0 -0
- /package/{lib → cli/lib}/param-handlers/interact-for-runtime.ts +0 -0
- /package/{lib → cli/lib}/posthog.ts +0 -0
- /package/{lib → cli/lib}/soupify.ts +0 -0
- /package/{lib → cli/lib}/util/lint-project.ts +0 -0
- /package/{tests → cli/tests}/init.test.ts +0 -0
- /package/example-project/examples/{basic-bug.tsx → basic-chip.tsx} +0 -0
- /package/{dev-server-frontend → frontend}/README.md +0 -0
- /package/{dev-server-frontend → frontend}/bun.lockb +0 -0
- /package/{dev-server-frontend/src → frontend}/components/global-context-providers.tsx +0 -0
- /package/{dev-server-frontend → frontend}/components.json +0 -0
- /package/{dev-server-frontend/src → frontend}/hooks/toast-if-api-not-connected.ts +0 -0
- /package/{dev-server-frontend/src → frontend}/hooks/use-active-dev-package-example-lite.ts +0 -0
- /package/{dev-server-frontend/src → frontend}/hooks/use-dev-package-examples.tsx +0 -0
- /package/{dev-server-frontend/src → frontend}/hooks/use-global-store.ts +0 -0
- /package/{dev-server-frontend/src → frontend}/index.css +0 -0
- /package/{dev-server-frontend/src → frontend}/lib/utils.ts +0 -0
- /package/{dev-server-frontend/src → frontend}/vite-env.d.ts +0 -0
|
@@ -1,609 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "example-project",
|
|
3
|
-
"version": "1.2.26",
|
|
4
|
-
"lockfileVersion": 3,
|
|
5
|
-
"requires": true,
|
|
6
|
-
"packages": {
|
|
7
|
-
"": {
|
|
8
|
-
"name": "example-project",
|
|
9
|
-
"version": "1.2.26",
|
|
10
|
-
"dependencies": {
|
|
11
|
-
"@tscircuit/builder": "^1.5.134",
|
|
12
|
-
"@tscircuit/layout": "^0.0.25",
|
|
13
|
-
"@tscircuit/react-fiber": "^1.1.29"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"node_modules/@babel/runtime": {
|
|
17
|
-
"version": "7.24.4",
|
|
18
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.4.tgz",
|
|
19
|
-
"integrity": "sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==",
|
|
20
|
-
"dependencies": {
|
|
21
|
-
"regenerator-runtime": "^0.14.0"
|
|
22
|
-
},
|
|
23
|
-
"engines": {
|
|
24
|
-
"node": ">=6.9.0"
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
"node_modules/@lume/kiwi": {
|
|
28
|
-
"version": "0.1.0",
|
|
29
|
-
"resolved": "https://registry.npmjs.org/@lume/kiwi/-/kiwi-0.1.0.tgz",
|
|
30
|
-
"integrity": "sha512-iB+oaYyaVK1hQ0cODubnoSDg4gGYL9cp/4ad7G1b9Z0/IqehPztp5qE3KP2mV9Ns0UYmzwvtkEhTCmKUuhorbg=="
|
|
31
|
-
},
|
|
32
|
-
"node_modules/@tscircuit/builder": {
|
|
33
|
-
"version": "1.5.148",
|
|
34
|
-
"resolved": "https://registry.npmjs.org/@tscircuit/builder/-/builder-1.5.148.tgz",
|
|
35
|
-
"integrity": "sha512-H8zn2XD1Ie1GITG7nH8DzLYHrUbMPtlc8aXe9krPMDE+zxl5OBIwfDe5Hmi8bO0G0790cvUQU71b8qZeDVh35w==",
|
|
36
|
-
"license": "MIT",
|
|
37
|
-
"dependencies": {
|
|
38
|
-
"@lume/kiwi": "^0.1.0",
|
|
39
|
-
"@tscircuit/layout": "^0.0.25",
|
|
40
|
-
"@tscircuit/routing": "1.3.1",
|
|
41
|
-
"@tscircuit/schematic-autolayout": "^0.0.5",
|
|
42
|
-
"convert-units": "^2.3.4",
|
|
43
|
-
"fast-json-stable-stringify": "^2.1.0",
|
|
44
|
-
"format-si-prefix": "^0.3.2",
|
|
45
|
-
"papaparse": "^5.4.1",
|
|
46
|
-
"rectilinear-router": "^1.0.1",
|
|
47
|
-
"svg-path-bounds": "^1.0.2",
|
|
48
|
-
"transformation-matrix": "^2.12.0"
|
|
49
|
-
},
|
|
50
|
-
"peerDependencies": {
|
|
51
|
-
"@tscircuit/footprinter": "*",
|
|
52
|
-
"@tscircuit/props": "*",
|
|
53
|
-
"@tscircuit/soup": "*",
|
|
54
|
-
"@tscircuit/soup-util": "*"
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
"node_modules/@tscircuit/footprinter": {
|
|
58
|
-
"version": "0.0.43",
|
|
59
|
-
"resolved": "https://registry.npmjs.org/@tscircuit/footprinter/-/footprinter-0.0.43.tgz",
|
|
60
|
-
"integrity": "sha512-L5Z6XmvcC09iT5+SZc7rQ4rNYfLjWD5j4VB7/ymSiz0Gh17DoNx5FnWKL57BNWxRHLNe+6OPBlWnPBzlzHSEOQ==",
|
|
61
|
-
"peer": true,
|
|
62
|
-
"dependencies": {
|
|
63
|
-
"@tscircuit/mm": "^0.0.7",
|
|
64
|
-
"zod": "^3.23.8"
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
|
-
"node_modules/@tscircuit/layout": {
|
|
68
|
-
"version": "0.0.25",
|
|
69
|
-
"resolved": "https://registry.npmjs.org/@tscircuit/layout/-/layout-0.0.25.tgz",
|
|
70
|
-
"integrity": "sha512-Mk7LveFUkvV7X5+DjX3aAKClkvPOcIEiPz6knIxay3VZCMJw7sSX1QJVa6VJiUiaV51uFohqvwymLhYOaW/kAg==",
|
|
71
|
-
"license": "ISC",
|
|
72
|
-
"dependencies": {
|
|
73
|
-
"transformation-matrix": "^2.16.1"
|
|
74
|
-
},
|
|
75
|
-
"peerDependencies": {
|
|
76
|
-
"@tscircuit/manual-edit-events": "*",
|
|
77
|
-
"@tscircuit/schematic-autolayout": "*",
|
|
78
|
-
"@tscircuit/soup": "*",
|
|
79
|
-
"@tscircuit/soup-util": "*",
|
|
80
|
-
"zod": "*"
|
|
81
|
-
}
|
|
82
|
-
},
|
|
83
|
-
"node_modules/@tscircuit/manual-edit-events": {
|
|
84
|
-
"version": "0.0.4",
|
|
85
|
-
"resolved": "https://registry.npmjs.org/@tscircuit/manual-edit-events/-/manual-edit-events-0.0.4.tgz",
|
|
86
|
-
"integrity": "sha512-Df5dkOc9T7rHtnHSmI3GAR5zWdsJo8S5DzrJHjmHLXZ/fQZ7+qY+rEzyuOneFRiOqXx2tVkdFEj59MnX8ix/Wg==",
|
|
87
|
-
"license": "ISC",
|
|
88
|
-
"peer": true,
|
|
89
|
-
"dependencies": {
|
|
90
|
-
"zod": "^3.23.8"
|
|
91
|
-
}
|
|
92
|
-
},
|
|
93
|
-
"node_modules/@tscircuit/mm": {
|
|
94
|
-
"version": "0.0.7",
|
|
95
|
-
"resolved": "https://registry.npmjs.org/@tscircuit/mm/-/mm-0.0.7.tgz",
|
|
96
|
-
"integrity": "sha512-5lZjeOsrkQDnMd4OEuXQYC8k+zuWCbX9Ruq69JhcvLu18FUen3pPjBxmFyF2DGZYxaTrKUpUdZvoTr49TISN2g==",
|
|
97
|
-
"peer": true,
|
|
98
|
-
"dependencies": {
|
|
99
|
-
"convert-units": "^2.3.4"
|
|
100
|
-
},
|
|
101
|
-
"peerDependencies": {
|
|
102
|
-
"typescript": "^5.0.0"
|
|
103
|
-
}
|
|
104
|
-
},
|
|
105
|
-
"node_modules/@tscircuit/props": {
|
|
106
|
-
"version": "0.0.13",
|
|
107
|
-
"resolved": "https://registry.npmjs.org/@tscircuit/props/-/props-0.0.13.tgz",
|
|
108
|
-
"integrity": "sha512-mMEBrWkK2BFoC3OAEgQZxjf/jOEL9+67xK7sOY7rnrLEiOspF7f+ZyY/hCmBvSgOsoW5v46MWxNuxjMh4ajizw==",
|
|
109
|
-
"peer": true,
|
|
110
|
-
"peerDependencies": {
|
|
111
|
-
"@tscircuit/layout": "*",
|
|
112
|
-
"@tscircuit/soup": "*",
|
|
113
|
-
"react": "*",
|
|
114
|
-
"zod": "*"
|
|
115
|
-
}
|
|
116
|
-
},
|
|
117
|
-
"node_modules/@tscircuit/react-fiber": {
|
|
118
|
-
"version": "1.1.29",
|
|
119
|
-
"resolved": "https://registry.npmjs.org/@tscircuit/react-fiber/-/react-fiber-1.1.29.tgz",
|
|
120
|
-
"integrity": "sha512-Iqx1EQUZm4nMYplSQ5tdSkLpYroqRgmDitrm/Q2tHnaGsHS2/hZeZTmH0fenXQyj55RSqrdPM6FxjFe+CvyBKQ==",
|
|
121
|
-
"license": "MIT",
|
|
122
|
-
"dependencies": {
|
|
123
|
-
"@tscircuit/soup": "^0.0.34",
|
|
124
|
-
"react-reconciler": "^0.29.0",
|
|
125
|
-
"to-snake-case": "^1.0.0"
|
|
126
|
-
},
|
|
127
|
-
"peerDependencies": {
|
|
128
|
-
"@tscircuit/builder": "*",
|
|
129
|
-
"@tscircuit/props": "*",
|
|
130
|
-
"react": "*"
|
|
131
|
-
}
|
|
132
|
-
},
|
|
133
|
-
"node_modules/@tscircuit/routing": {
|
|
134
|
-
"version": "1.3.1",
|
|
135
|
-
"resolved": "https://registry.npmjs.org/@tscircuit/routing/-/routing-1.3.1.tgz",
|
|
136
|
-
"integrity": "sha512-DQRAFvk3uikRMbeOTWnNAdoSVdStx9o8UZhvh6pcoqxJsx4RKWg8d9ssycm2v7wzyg8rjjUPJUpymgkJQtBPpA==",
|
|
137
|
-
"dependencies": {
|
|
138
|
-
"pathfinding": "^0.4.18",
|
|
139
|
-
"react-error-boundary": "^4.0.11"
|
|
140
|
-
}
|
|
141
|
-
},
|
|
142
|
-
"node_modules/@tscircuit/schematic-autolayout": {
|
|
143
|
-
"version": "0.0.5",
|
|
144
|
-
"resolved": "https://registry.npmjs.org/@tscircuit/schematic-autolayout/-/schematic-autolayout-0.0.5.tgz",
|
|
145
|
-
"integrity": "sha512-I4CtLQfqTPTxDSumnquaJtkJkc16VjLC4bwU3jQdBXwwh9ODzBf88clUznUtDDzwV+BPM5P0W0VCfFhvPL3/Cw==",
|
|
146
|
-
"dependencies": {
|
|
147
|
-
"react": "^18.2.0",
|
|
148
|
-
"react-dom": "^18.2.0",
|
|
149
|
-
"react-supergrid": "^1.0.10",
|
|
150
|
-
"transformation-matrix": "^2.16.1",
|
|
151
|
-
"use-mouse-matrix-transform": "^1.1.12"
|
|
152
|
-
}
|
|
153
|
-
},
|
|
154
|
-
"node_modules/@tscircuit/soup": {
|
|
155
|
-
"version": "0.0.34",
|
|
156
|
-
"resolved": "https://registry.npmjs.org/@tscircuit/soup/-/soup-0.0.34.tgz",
|
|
157
|
-
"integrity": "sha512-Xz0bwDE5FiF8qXaG0LZ5UEx7HeKX3FLvKhqq02l+iyzmoSBiwhlf8U4Z2WI+XtY63KSyqlv8r0ixNrtWrlWucQ==",
|
|
158
|
-
"license": "ISC",
|
|
159
|
-
"dependencies": {
|
|
160
|
-
"convert-units": "^2.3.4",
|
|
161
|
-
"zod": "^3.23.6"
|
|
162
|
-
}
|
|
163
|
-
},
|
|
164
|
-
"node_modules/@tscircuit/soup-util": {
|
|
165
|
-
"version": "0.0.10",
|
|
166
|
-
"resolved": "https://registry.npmjs.org/@tscircuit/soup-util/-/soup-util-0.0.10.tgz",
|
|
167
|
-
"integrity": "sha512-mwZS7C6f6wjp20g77GucXZ8VrzNsIZxqRQjGitvLUK7y+n3xd7iKb/eP5QDM0PldbidTDC/RR/A46MhJLz0Rhg==",
|
|
168
|
-
"peer": true,
|
|
169
|
-
"dependencies": {
|
|
170
|
-
"@tscircuit/soup": "^0.0.15"
|
|
171
|
-
},
|
|
172
|
-
"peerDependencies": {
|
|
173
|
-
"zod": "*"
|
|
174
|
-
}
|
|
175
|
-
},
|
|
176
|
-
"node_modules/@tscircuit/soup-util/node_modules/@tscircuit/soup": {
|
|
177
|
-
"version": "0.0.15",
|
|
178
|
-
"resolved": "https://registry.npmjs.org/@tscircuit/soup/-/soup-0.0.15.tgz",
|
|
179
|
-
"integrity": "sha512-lMCjcIztiYjBDNNEcMFtwgosUTbget2arwqkRVCAjRP8G+r6gjUNhVLcMyN3cZGdLpHce8lm/h2kE4tYO4S7GA==",
|
|
180
|
-
"peer": true,
|
|
181
|
-
"dependencies": {
|
|
182
|
-
"convert-units": "^2.3.4",
|
|
183
|
-
"zod": "^3.23.6"
|
|
184
|
-
}
|
|
185
|
-
},
|
|
186
|
-
"node_modules/abs-svg-path": {
|
|
187
|
-
"version": "0.1.1",
|
|
188
|
-
"resolved": "https://registry.npmjs.org/abs-svg-path/-/abs-svg-path-0.1.1.tgz",
|
|
189
|
-
"integrity": "sha512-d8XPSGjfyzlXC3Xx891DJRyZfqk5JU0BJrDQcsWomFIV1/BIzPW5HDH5iDdWpqWaav0YVIEzT1RHTwWr0FFshA=="
|
|
190
|
-
},
|
|
191
|
-
"node_modules/convert-units": {
|
|
192
|
-
"version": "2.3.4",
|
|
193
|
-
"resolved": "https://registry.npmjs.org/convert-units/-/convert-units-2.3.4.tgz",
|
|
194
|
-
"integrity": "sha512-ERHfdA0UhHJp1IpwE6PnFJx8LqG7B1ZjJ20UvVCmopEnVCfER68Tbe3kvN63dLbYXDA2xFWRE6zd4Wsf0w7POg==",
|
|
195
|
-
"dependencies": {
|
|
196
|
-
"lodash.foreach": "2.3.x",
|
|
197
|
-
"lodash.keys": "2.3.x"
|
|
198
|
-
}
|
|
199
|
-
},
|
|
200
|
-
"node_modules/fast-json-stable-stringify": {
|
|
201
|
-
"version": "2.1.0",
|
|
202
|
-
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
|
|
203
|
-
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
|
|
204
|
-
},
|
|
205
|
-
"node_modules/format-si-prefix": {
|
|
206
|
-
"version": "0.3.2",
|
|
207
|
-
"resolved": "https://registry.npmjs.org/format-si-prefix/-/format-si-prefix-0.3.2.tgz",
|
|
208
|
-
"integrity": "sha512-gtCZh4RpmlmEZtyzyvs+FXXWOmdfpQQ0M7mjc81zpAYm5QpsoUDPKhAK+Lj7fJCtZSJpE5xbpCYgspCBxahObQ==",
|
|
209
|
-
"dependencies": {
|
|
210
|
-
"parseunit": "^0"
|
|
211
|
-
}
|
|
212
|
-
},
|
|
213
|
-
"node_modules/glpk.js": {
|
|
214
|
-
"version": "4.0.2",
|
|
215
|
-
"resolved": "https://registry.npmjs.org/glpk.js/-/glpk.js-4.0.2.tgz",
|
|
216
|
-
"integrity": "sha512-GADfTGaExp7C6JfBnBdx7SF80hxPO30VvLP9wpA6EhXgDj5/Oapm+gyF0EFEC7RrPX4JpfRI3TmAtlLckeQIXw==",
|
|
217
|
-
"dependencies": {
|
|
218
|
-
"pako": "^2.0.4"
|
|
219
|
-
}
|
|
220
|
-
},
|
|
221
|
-
"node_modules/heap": {
|
|
222
|
-
"version": "0.2.5",
|
|
223
|
-
"resolved": "https://registry.npmjs.org/heap/-/heap-0.2.5.tgz",
|
|
224
|
-
"integrity": "sha512-G7HLD+WKcrOyJP5VQwYZNC3Z6FcQ7YYjEFiFoIj8PfEr73mu421o8B1N5DKUcc8K37EsJ2XXWA8DtrDz/2dReg=="
|
|
225
|
-
},
|
|
226
|
-
"node_modules/is-svg-path": {
|
|
227
|
-
"version": "1.0.2",
|
|
228
|
-
"resolved": "https://registry.npmjs.org/is-svg-path/-/is-svg-path-1.0.2.tgz",
|
|
229
|
-
"integrity": "sha512-Lj4vePmqpPR1ZnRctHv8ltSh1OrSxHkhUkd7wi+VQdcdP15/KvQFyk7LhNuM7ZW0EVbJz8kZLVmL9quLrfq4Kg=="
|
|
230
|
-
},
|
|
231
|
-
"node_modules/js-tokens": {
|
|
232
|
-
"version": "4.0.0",
|
|
233
|
-
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
|
234
|
-
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
|
|
235
|
-
},
|
|
236
|
-
"node_modules/lodash": {
|
|
237
|
-
"version": "4.17.21",
|
|
238
|
-
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
|
|
239
|
-
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
|
|
240
|
-
},
|
|
241
|
-
"node_modules/lodash._basebind": {
|
|
242
|
-
"version": "2.3.0",
|
|
243
|
-
"resolved": "https://registry.npmjs.org/lodash._basebind/-/lodash._basebind-2.3.0.tgz",
|
|
244
|
-
"integrity": "sha512-SHqM7YCuJ+BeGTs7lqpWnmdHEeF4MWxS3dksJctHFNxR81FXPOzA4bS5Vs5CpcGTkBpM8FCl+YEbQEblRw8ABg==",
|
|
245
|
-
"dependencies": {
|
|
246
|
-
"lodash._basecreate": "~2.3.0",
|
|
247
|
-
"lodash._setbinddata": "~2.3.0",
|
|
248
|
-
"lodash.isobject": "~2.3.0"
|
|
249
|
-
}
|
|
250
|
-
},
|
|
251
|
-
"node_modules/lodash._basecreate": {
|
|
252
|
-
"version": "2.3.0",
|
|
253
|
-
"resolved": "https://registry.npmjs.org/lodash._basecreate/-/lodash._basecreate-2.3.0.tgz",
|
|
254
|
-
"integrity": "sha512-vwZaWldZwS2y9b99D8i9+WtgiZXbHKsBsMrpxJEqTsNW20NhJo5W8PBQkeQO9CmxuqEYn8UkMnfEM2MMT4cVrw==",
|
|
255
|
-
"dependencies": {
|
|
256
|
-
"lodash._renative": "~2.3.0",
|
|
257
|
-
"lodash.isobject": "~2.3.0",
|
|
258
|
-
"lodash.noop": "~2.3.0"
|
|
259
|
-
}
|
|
260
|
-
},
|
|
261
|
-
"node_modules/lodash._basecreatecallback": {
|
|
262
|
-
"version": "2.3.0",
|
|
263
|
-
"resolved": "https://registry.npmjs.org/lodash._basecreatecallback/-/lodash._basecreatecallback-2.3.0.tgz",
|
|
264
|
-
"integrity": "sha512-Ev+pDzzfVfgbiucpXijconLGRBar7/+KNCf05kSnk4CmdDVhAy1RdbU9efCJ/o9GXI08JdUGwZ+5QJ3QX3kj0g==",
|
|
265
|
-
"dependencies": {
|
|
266
|
-
"lodash._setbinddata": "~2.3.0",
|
|
267
|
-
"lodash.bind": "~2.3.0",
|
|
268
|
-
"lodash.identity": "~2.3.0",
|
|
269
|
-
"lodash.support": "~2.3.0"
|
|
270
|
-
}
|
|
271
|
-
},
|
|
272
|
-
"node_modules/lodash._basecreatewrapper": {
|
|
273
|
-
"version": "2.3.0",
|
|
274
|
-
"resolved": "https://registry.npmjs.org/lodash._basecreatewrapper/-/lodash._basecreatewrapper-2.3.0.tgz",
|
|
275
|
-
"integrity": "sha512-YLycQ7k8AB9Wc1EOvLNxuRWcqipDkMXq2GCgnLWQR6qtgTb3gY3LELzEpnFshrEO4LOLs+R2EpcY+uCOZaLQ8Q==",
|
|
276
|
-
"dependencies": {
|
|
277
|
-
"lodash._basecreate": "~2.3.0",
|
|
278
|
-
"lodash._setbinddata": "~2.3.0",
|
|
279
|
-
"lodash._slice": "~2.3.0",
|
|
280
|
-
"lodash.isobject": "~2.3.0"
|
|
281
|
-
}
|
|
282
|
-
},
|
|
283
|
-
"node_modules/lodash._createwrapper": {
|
|
284
|
-
"version": "2.3.0",
|
|
285
|
-
"resolved": "https://registry.npmjs.org/lodash._createwrapper/-/lodash._createwrapper-2.3.0.tgz",
|
|
286
|
-
"integrity": "sha512-XjaI/rzg9W+WO4WJDQ+PRlHD5sAMJ1RhJLuT65cBxLCb1kIYs4U20jqvTDGAWyVT3c34GYiLd9AreHYuB/8yJA==",
|
|
287
|
-
"dependencies": {
|
|
288
|
-
"lodash._basebind": "~2.3.0",
|
|
289
|
-
"lodash._basecreatewrapper": "~2.3.0",
|
|
290
|
-
"lodash.isfunction": "~2.3.0"
|
|
291
|
-
}
|
|
292
|
-
},
|
|
293
|
-
"node_modules/lodash._objecttypes": {
|
|
294
|
-
"version": "2.3.0",
|
|
295
|
-
"resolved": "https://registry.npmjs.org/lodash._objecttypes/-/lodash._objecttypes-2.3.0.tgz",
|
|
296
|
-
"integrity": "sha512-jbA6QyHt9cw3BzvbWzIcnU3Z12jSneT6xBgz3Y782CJsN1tV5aTBKrFo2B4AkeHBNaxSrbPYZZpi1Lwj3xjdtg=="
|
|
297
|
-
},
|
|
298
|
-
"node_modules/lodash._renative": {
|
|
299
|
-
"version": "2.3.0",
|
|
300
|
-
"resolved": "https://registry.npmjs.org/lodash._renative/-/lodash._renative-2.3.0.tgz",
|
|
301
|
-
"integrity": "sha512-v44MRirqYqZGK/h5UKoVqXWF2L+LUiLTU+Ogu5rHRVWJUA1uWIlHaMpG8f/OA8j++BzPMQij9+erXHtgFcbuwg=="
|
|
302
|
-
},
|
|
303
|
-
"node_modules/lodash._setbinddata": {
|
|
304
|
-
"version": "2.3.0",
|
|
305
|
-
"resolved": "https://registry.npmjs.org/lodash._setbinddata/-/lodash._setbinddata-2.3.0.tgz",
|
|
306
|
-
"integrity": "sha512-xMFfbF7dL+sFtrdE49uHFmfpBAEwlFtfgMp86nQRlAF6aizYL+3MTbnYMKJSkP1W501PhsgiBED5kBbZd8kR2g==",
|
|
307
|
-
"dependencies": {
|
|
308
|
-
"lodash._renative": "~2.3.0",
|
|
309
|
-
"lodash.noop": "~2.3.0"
|
|
310
|
-
}
|
|
311
|
-
},
|
|
312
|
-
"node_modules/lodash._shimkeys": {
|
|
313
|
-
"version": "2.3.0",
|
|
314
|
-
"resolved": "https://registry.npmjs.org/lodash._shimkeys/-/lodash._shimkeys-2.3.0.tgz",
|
|
315
|
-
"integrity": "sha512-9Iuyi7TiWMGa/9+2rqEE+Zwye4b/U2w7Saw6UX1h6Xs88mEER+uz9FZcEBPKMVKsad9Pw5GNAcIBRnW2jNpneQ==",
|
|
316
|
-
"dependencies": {
|
|
317
|
-
"lodash._objecttypes": "~2.3.0"
|
|
318
|
-
}
|
|
319
|
-
},
|
|
320
|
-
"node_modules/lodash._slice": {
|
|
321
|
-
"version": "2.3.0",
|
|
322
|
-
"resolved": "https://registry.npmjs.org/lodash._slice/-/lodash._slice-2.3.0.tgz",
|
|
323
|
-
"integrity": "sha512-7C61GhzRUv36gTafr+RIb+AomCAYsSATEoK4OP0VkNBcwvsM022Z22AVgqjjzikeNO1U29LzsJZDvLbiNPUYvA=="
|
|
324
|
-
},
|
|
325
|
-
"node_modules/lodash.bind": {
|
|
326
|
-
"version": "2.3.0",
|
|
327
|
-
"resolved": "https://registry.npmjs.org/lodash.bind/-/lodash.bind-2.3.0.tgz",
|
|
328
|
-
"integrity": "sha512-goakyOo+FMN8lttMPnZ0UNlr5RlzX4IrUXyTJPT2A0tGCMXySupond9wzvDqTvVmYTcQjIKGrj8naJDS2xWAlQ==",
|
|
329
|
-
"dependencies": {
|
|
330
|
-
"lodash._createwrapper": "~2.3.0",
|
|
331
|
-
"lodash._renative": "~2.3.0",
|
|
332
|
-
"lodash._slice": "~2.3.0"
|
|
333
|
-
}
|
|
334
|
-
},
|
|
335
|
-
"node_modules/lodash.foreach": {
|
|
336
|
-
"version": "2.3.0",
|
|
337
|
-
"resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-2.3.0.tgz",
|
|
338
|
-
"integrity": "sha512-yLnyptVRJd0//AbGp480grgQG9iaDIV5uOgSbpurRy1dYybPbjNTLQ3FyLEQ84buVLPG7jyaiyvpzgfOutRB3Q==",
|
|
339
|
-
"dependencies": {
|
|
340
|
-
"lodash._basecreatecallback": "~2.3.0",
|
|
341
|
-
"lodash.forown": "~2.3.0"
|
|
342
|
-
}
|
|
343
|
-
},
|
|
344
|
-
"node_modules/lodash.forown": {
|
|
345
|
-
"version": "2.3.0",
|
|
346
|
-
"resolved": "https://registry.npmjs.org/lodash.forown/-/lodash.forown-2.3.0.tgz",
|
|
347
|
-
"integrity": "sha512-dUnCsuQTtq3Y7bxPNoEEqjJjPL2ftLtcz2PTeRKvhbpdM514AvnqCjewHGsm/W+dwspIwa14KoWEZeizJ7smxA==",
|
|
348
|
-
"dependencies": {
|
|
349
|
-
"lodash._basecreatecallback": "~2.3.0",
|
|
350
|
-
"lodash._objecttypes": "~2.3.0",
|
|
351
|
-
"lodash.keys": "~2.3.0"
|
|
352
|
-
}
|
|
353
|
-
},
|
|
354
|
-
"node_modules/lodash.identity": {
|
|
355
|
-
"version": "2.3.0",
|
|
356
|
-
"resolved": "https://registry.npmjs.org/lodash.identity/-/lodash.identity-2.3.0.tgz",
|
|
357
|
-
"integrity": "sha512-NYJ2r2cwy3tkx/saqbIZEX6oQUzjWTnGRu7d/zmBjMCZos3eHBxCpbvWFWSetv8jFVrptsp6EbWjzNgBKhUoOA=="
|
|
358
|
-
},
|
|
359
|
-
"node_modules/lodash.isfunction": {
|
|
360
|
-
"version": "2.3.0",
|
|
361
|
-
"resolved": "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-2.3.0.tgz",
|
|
362
|
-
"integrity": "sha512-X5lteBYlCrVO7Qc00fxP8W90fzRp6Ax9XcHANmU3OsZHdSyIVZ9ZlX5QTTpRq8aGY+9I5Rmd0UTzTIIyWPugEQ=="
|
|
363
|
-
},
|
|
364
|
-
"node_modules/lodash.isobject": {
|
|
365
|
-
"version": "2.3.0",
|
|
366
|
-
"resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-2.3.0.tgz",
|
|
367
|
-
"integrity": "sha512-jo1pfV61C4TE8BfEzqaHj6EIKiSkFANJrB6yscwuCJMSRw5tbqjk4Gv7nJzk4Z6nFKobZjGZ8Qd41vmnwgeQqQ==",
|
|
368
|
-
"dependencies": {
|
|
369
|
-
"lodash._objecttypes": "~2.3.0"
|
|
370
|
-
}
|
|
371
|
-
},
|
|
372
|
-
"node_modules/lodash.keys": {
|
|
373
|
-
"version": "2.3.0",
|
|
374
|
-
"resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.3.0.tgz",
|
|
375
|
-
"integrity": "sha512-c0UW0ffqMxSCtoVbmVt2lERJLkEqgoOn2ejPsWXzr0ZrqRbl3uruGgwHzhtqXxi6K/ei3Ey7zimOqSwXgzazPg==",
|
|
376
|
-
"dependencies": {
|
|
377
|
-
"lodash._renative": "~2.3.0",
|
|
378
|
-
"lodash._shimkeys": "~2.3.0",
|
|
379
|
-
"lodash.isobject": "~2.3.0"
|
|
380
|
-
}
|
|
381
|
-
},
|
|
382
|
-
"node_modules/lodash.noop": {
|
|
383
|
-
"version": "2.3.0",
|
|
384
|
-
"resolved": "https://registry.npmjs.org/lodash.noop/-/lodash.noop-2.3.0.tgz",
|
|
385
|
-
"integrity": "sha512-NpSm8HRm1WkBBWHUveDukLF4Kfb5P5E3fjHc9Qre9A11nNubozLWD2wH3UBTZbu+KSuX8aSUvy9b+PUyEceJ8g=="
|
|
386
|
-
},
|
|
387
|
-
"node_modules/lodash.support": {
|
|
388
|
-
"version": "2.3.0",
|
|
389
|
-
"resolved": "https://registry.npmjs.org/lodash.support/-/lodash.support-2.3.0.tgz",
|
|
390
|
-
"integrity": "sha512-etc7VWbB0U3Iya8ixj2xy4sDBN3jvPX7ODi8iXtn4KkkjNpdngrdc7Vlt5jub/Vgqx6/dWtp7Ml9awhCQPYKGQ==",
|
|
391
|
-
"dependencies": {
|
|
392
|
-
"lodash._renative": "~2.3.0"
|
|
393
|
-
}
|
|
394
|
-
},
|
|
395
|
-
"node_modules/loose-envify": {
|
|
396
|
-
"version": "1.4.0",
|
|
397
|
-
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
|
|
398
|
-
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
|
|
399
|
-
"dependencies": {
|
|
400
|
-
"js-tokens": "^3.0.0 || ^4.0.0"
|
|
401
|
-
},
|
|
402
|
-
"bin": {
|
|
403
|
-
"loose-envify": "cli.js"
|
|
404
|
-
}
|
|
405
|
-
},
|
|
406
|
-
"node_modules/normalize-svg-path": {
|
|
407
|
-
"version": "1.1.0",
|
|
408
|
-
"resolved": "https://registry.npmjs.org/normalize-svg-path/-/normalize-svg-path-1.1.0.tgz",
|
|
409
|
-
"integrity": "sha512-r9KHKG2UUeB5LoTouwDzBy2VxXlHsiM6fyLQvnJa0S5hrhzqElH/CH7TUGhT1fVvIYBIKf3OpY4YJ4CK+iaqHg==",
|
|
410
|
-
"dependencies": {
|
|
411
|
-
"svg-arc-to-cubic-bezier": "^3.0.0"
|
|
412
|
-
}
|
|
413
|
-
},
|
|
414
|
-
"node_modules/pako": {
|
|
415
|
-
"version": "2.1.0",
|
|
416
|
-
"resolved": "https://registry.npmjs.org/pako/-/pako-2.1.0.tgz",
|
|
417
|
-
"integrity": "sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug=="
|
|
418
|
-
},
|
|
419
|
-
"node_modules/papaparse": {
|
|
420
|
-
"version": "5.4.1",
|
|
421
|
-
"resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.4.1.tgz",
|
|
422
|
-
"integrity": "sha512-HipMsgJkZu8br23pW15uvo6sib6wne/4woLZPlFf3rpDyMe9ywEXUsuD7+6K9PRkJlVT51j/sCOYDKGGS3ZJrw=="
|
|
423
|
-
},
|
|
424
|
-
"node_modules/parse-svg-path": {
|
|
425
|
-
"version": "0.1.2",
|
|
426
|
-
"resolved": "https://registry.npmjs.org/parse-svg-path/-/parse-svg-path-0.1.2.tgz",
|
|
427
|
-
"integrity": "sha512-JyPSBnkTJ0AI8GGJLfMXvKq42cj5c006fnLz6fXy6zfoVjJizi8BNTpu8on8ziI1cKy9d9DGNuY17Ce7wuejpQ=="
|
|
428
|
-
},
|
|
429
|
-
"node_modules/parseunit": {
|
|
430
|
-
"version": "0.3.1",
|
|
431
|
-
"resolved": "https://registry.npmjs.org/parseunit/-/parseunit-0.3.1.tgz",
|
|
432
|
-
"integrity": "sha512-kKtTgCJDsktOHsnvRR/B5DhWi3a/RZ5M9XjVQZGbOatcam+/tk4sMOCQ1WM9Rswfr78zWGBgHNbWTyJvfR0ejg=="
|
|
433
|
-
},
|
|
434
|
-
"node_modules/pathfinding": {
|
|
435
|
-
"version": "0.4.18",
|
|
436
|
-
"resolved": "https://registry.npmjs.org/pathfinding/-/pathfinding-0.4.18.tgz",
|
|
437
|
-
"integrity": "sha512-R0TGEQ9GRcFCDvAWlJAWC+KGJ9SLbW4c0nuZRcioVlXVTlw+F5RvXQ8SQgSqI9KXWC1ew95vgmIiyaWTlCe9Ag==",
|
|
438
|
-
"dependencies": {
|
|
439
|
-
"heap": "0.2.5"
|
|
440
|
-
}
|
|
441
|
-
},
|
|
442
|
-
"node_modules/react": {
|
|
443
|
-
"version": "18.3.1",
|
|
444
|
-
"resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
|
|
445
|
-
"integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
|
|
446
|
-
"dependencies": {
|
|
447
|
-
"loose-envify": "^1.1.0"
|
|
448
|
-
},
|
|
449
|
-
"engines": {
|
|
450
|
-
"node": ">=0.10.0"
|
|
451
|
-
}
|
|
452
|
-
},
|
|
453
|
-
"node_modules/react-dom": {
|
|
454
|
-
"version": "18.3.1",
|
|
455
|
-
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
|
|
456
|
-
"integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
|
|
457
|
-
"dependencies": {
|
|
458
|
-
"loose-envify": "^1.1.0",
|
|
459
|
-
"scheduler": "^0.23.2"
|
|
460
|
-
},
|
|
461
|
-
"peerDependencies": {
|
|
462
|
-
"react": "^18.3.1"
|
|
463
|
-
}
|
|
464
|
-
},
|
|
465
|
-
"node_modules/react-error-boundary": {
|
|
466
|
-
"version": "4.0.13",
|
|
467
|
-
"resolved": "https://registry.npmjs.org/react-error-boundary/-/react-error-boundary-4.0.13.tgz",
|
|
468
|
-
"integrity": "sha512-b6PwbdSv8XeOSYvjt8LpgpKrZ0yGdtZokYwkwV2wlcZbxgopHX/hgPl5VgpnoVOWd868n1hktM8Qm4b+02MiLQ==",
|
|
469
|
-
"dependencies": {
|
|
470
|
-
"@babel/runtime": "^7.12.5"
|
|
471
|
-
},
|
|
472
|
-
"peerDependencies": {
|
|
473
|
-
"react": ">=16.13.1"
|
|
474
|
-
}
|
|
475
|
-
},
|
|
476
|
-
"node_modules/react-reconciler": {
|
|
477
|
-
"version": "0.29.0",
|
|
478
|
-
"resolved": "https://registry.npmjs.org/react-reconciler/-/react-reconciler-0.29.0.tgz",
|
|
479
|
-
"integrity": "sha512-wa0fGj7Zht1EYMRhKWwoo1H9GApxYLBuhoAuXN0TlltESAjDssB+Apf0T/DngVqaMyPypDmabL37vw/2aRM98Q==",
|
|
480
|
-
"dependencies": {
|
|
481
|
-
"loose-envify": "^1.1.0",
|
|
482
|
-
"scheduler": "^0.23.0"
|
|
483
|
-
},
|
|
484
|
-
"engines": {
|
|
485
|
-
"node": ">=0.10.0"
|
|
486
|
-
},
|
|
487
|
-
"peerDependencies": {
|
|
488
|
-
"react": "^18.2.0"
|
|
489
|
-
}
|
|
490
|
-
},
|
|
491
|
-
"node_modules/react-supergrid": {
|
|
492
|
-
"version": "1.0.10",
|
|
493
|
-
"resolved": "https://registry.npmjs.org/react-supergrid/-/react-supergrid-1.0.10.tgz",
|
|
494
|
-
"integrity": "sha512-dJd9wkH6BJkdfkv62EcRAIBn59e2wj58bJFVXiW/ZHQzxz20qIql63fTU2qFMOujXnBIDaMG0uTod67/mjEGeA==",
|
|
495
|
-
"peerDependencies": {
|
|
496
|
-
"react": "*",
|
|
497
|
-
"react-dom": "*",
|
|
498
|
-
"transformation-matrix": "*"
|
|
499
|
-
}
|
|
500
|
-
},
|
|
501
|
-
"node_modules/rectilinear-router": {
|
|
502
|
-
"version": "1.0.1",
|
|
503
|
-
"resolved": "https://registry.npmjs.org/rectilinear-router/-/rectilinear-router-1.0.1.tgz",
|
|
504
|
-
"integrity": "sha512-3cLXo9A8/jK36nU5XRTC0V/9DLn0ORBaI02nYqGnoscazzo1xphyzzmQIJK8QjyNSBqoDAypkpOEP0khMMIPPw==",
|
|
505
|
-
"dependencies": {
|
|
506
|
-
"lodash": "^4.17.21",
|
|
507
|
-
"rsmt-ts": "^1.1.4"
|
|
508
|
-
}
|
|
509
|
-
},
|
|
510
|
-
"node_modules/regenerator-runtime": {
|
|
511
|
-
"version": "0.14.1",
|
|
512
|
-
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
|
|
513
|
-
"integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="
|
|
514
|
-
},
|
|
515
|
-
"node_modules/rsmt-ts": {
|
|
516
|
-
"version": "1.1.6",
|
|
517
|
-
"resolved": "https://registry.npmjs.org/rsmt-ts/-/rsmt-ts-1.1.6.tgz",
|
|
518
|
-
"integrity": "sha512-SKq3nla9/X4YUJX+DkInHbdZ/iEfVkGnpvP8zaF9/vv09vpHHmpiHv129zpKkVjVr7dML9lBGBdTok41Z3rQnQ==",
|
|
519
|
-
"dependencies": {
|
|
520
|
-
"glpk.js": "^4.0.1"
|
|
521
|
-
}
|
|
522
|
-
},
|
|
523
|
-
"node_modules/scheduler": {
|
|
524
|
-
"version": "0.23.2",
|
|
525
|
-
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
|
|
526
|
-
"integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
|
|
527
|
-
"dependencies": {
|
|
528
|
-
"loose-envify": "^1.1.0"
|
|
529
|
-
}
|
|
530
|
-
},
|
|
531
|
-
"node_modules/svg-arc-to-cubic-bezier": {
|
|
532
|
-
"version": "3.2.0",
|
|
533
|
-
"resolved": "https://registry.npmjs.org/svg-arc-to-cubic-bezier/-/svg-arc-to-cubic-bezier-3.2.0.tgz",
|
|
534
|
-
"integrity": "sha512-djbJ/vZKZO+gPoSDThGNpKDO+o+bAeA4XQKovvkNCqnIS2t+S4qnLAGQhyyrulhCFRl1WWzAp0wUDV8PpTVU3g=="
|
|
535
|
-
},
|
|
536
|
-
"node_modules/svg-path-bounds": {
|
|
537
|
-
"version": "1.0.2",
|
|
538
|
-
"resolved": "https://registry.npmjs.org/svg-path-bounds/-/svg-path-bounds-1.0.2.tgz",
|
|
539
|
-
"integrity": "sha512-H4/uAgLWrppIC0kHsb2/dWUYSmb4GE5UqH06uqWBcg6LBjX2fu0A8+JrO2/FJPZiSsNOKZAhyFFgsLTdYUvSqQ==",
|
|
540
|
-
"dependencies": {
|
|
541
|
-
"abs-svg-path": "^0.1.1",
|
|
542
|
-
"is-svg-path": "^1.0.1",
|
|
543
|
-
"normalize-svg-path": "^1.0.0",
|
|
544
|
-
"parse-svg-path": "^0.1.2"
|
|
545
|
-
}
|
|
546
|
-
},
|
|
547
|
-
"node_modules/to-no-case": {
|
|
548
|
-
"version": "1.0.2",
|
|
549
|
-
"resolved": "https://registry.npmjs.org/to-no-case/-/to-no-case-1.0.2.tgz",
|
|
550
|
-
"integrity": "sha512-Z3g735FxuZY8rodxV4gH7LxClE4H0hTIyHNIHdk+vpQxjLm0cwnKXq/OFVZ76SOQmto7txVcwSCwkU5kqp+FKg=="
|
|
551
|
-
},
|
|
552
|
-
"node_modules/to-snake-case": {
|
|
553
|
-
"version": "1.0.0",
|
|
554
|
-
"resolved": "https://registry.npmjs.org/to-snake-case/-/to-snake-case-1.0.0.tgz",
|
|
555
|
-
"integrity": "sha512-joRpzBAk1Bhi2eGEYBjukEWHOe/IvclOkiJl3DtA91jV6NwQ3MwXA4FHYeqk8BNp/D8bmi9tcNbRu/SozP0jbQ==",
|
|
556
|
-
"dependencies": {
|
|
557
|
-
"to-space-case": "^1.0.0"
|
|
558
|
-
}
|
|
559
|
-
},
|
|
560
|
-
"node_modules/to-space-case": {
|
|
561
|
-
"version": "1.0.0",
|
|
562
|
-
"resolved": "https://registry.npmjs.org/to-space-case/-/to-space-case-1.0.0.tgz",
|
|
563
|
-
"integrity": "sha512-rLdvwXZ39VOn1IxGL3V6ZstoTbwLRckQmn/U8ZDLuWwIXNpuZDhQ3AiRUlhTbOXFVE9C+dR51wM0CBDhk31VcA==",
|
|
564
|
-
"dependencies": {
|
|
565
|
-
"to-no-case": "^1.0.0"
|
|
566
|
-
}
|
|
567
|
-
},
|
|
568
|
-
"node_modules/transformation-matrix": {
|
|
569
|
-
"version": "2.16.1",
|
|
570
|
-
"resolved": "https://registry.npmjs.org/transformation-matrix/-/transformation-matrix-2.16.1.tgz",
|
|
571
|
-
"integrity": "sha512-tdtC3wxVEuzU7X/ydL131Q3JU5cPMEn37oqVLITjRDSDsnSHVFzW2JiCLfZLIQEgWzZHdSy3J6bZzvKEN24jGA==",
|
|
572
|
-
"funding": {
|
|
573
|
-
"url": "https://github.com/sponsors/chrvadala"
|
|
574
|
-
}
|
|
575
|
-
},
|
|
576
|
-
"node_modules/typescript": {
|
|
577
|
-
"version": "5.4.5",
|
|
578
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz",
|
|
579
|
-
"integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==",
|
|
580
|
-
"peer": true,
|
|
581
|
-
"bin": {
|
|
582
|
-
"tsc": "bin/tsc",
|
|
583
|
-
"tsserver": "bin/tsserver"
|
|
584
|
-
},
|
|
585
|
-
"engines": {
|
|
586
|
-
"node": ">=14.17"
|
|
587
|
-
}
|
|
588
|
-
},
|
|
589
|
-
"node_modules/use-mouse-matrix-transform": {
|
|
590
|
-
"version": "1.1.13",
|
|
591
|
-
"resolved": "https://registry.npmjs.org/use-mouse-matrix-transform/-/use-mouse-matrix-transform-1.1.13.tgz",
|
|
592
|
-
"integrity": "sha512-NsP0j0Ifv9TywhqrNGfIhjpGzuyEzPK553ahn+LBVvZHZ6Gv+2T3tn41pJV6Syos1W7crWKolbP+XLfqa5BpCQ==",
|
|
593
|
-
"dependencies": {
|
|
594
|
-
"transformation-matrix": "^2.14.0"
|
|
595
|
-
},
|
|
596
|
-
"peerDependencies": {
|
|
597
|
-
"react": "^18.2.0"
|
|
598
|
-
}
|
|
599
|
-
},
|
|
600
|
-
"node_modules/zod": {
|
|
601
|
-
"version": "3.23.8",
|
|
602
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz",
|
|
603
|
-
"integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==",
|
|
604
|
-
"funding": {
|
|
605
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
606
|
-
}
|
|
607
|
-
}
|
|
608
|
-
}
|
|
609
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{cli.ts → cli/cli.ts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|