@tscircuit/fake-snippets 0.0.28 → 0.0.30
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/bun-tests/fake-snippets-api/routes/packages/add_star.test.ts +161 -0
- package/bun-tests/fake-snippets-api/routes/packages/get.test.ts +1 -1
- package/bun-tests/fake-snippets-api/routes/packages/remove_star.test.ts +158 -0
- package/bun.lock +43 -30
- package/dist/bundle.js +279 -145
- package/fake-snippets-api/lib/package_file/get-package-file-id-from-file-descriptor.ts +9 -4
- package/fake-snippets-api/routes/api/package_files/list.ts +1 -1
- package/fake-snippets-api/routes/api/packages/add_star.ts +82 -0
- package/fake-snippets-api/routes/api/packages/get.ts +12 -2
- package/fake-snippets-api/routes/api/packages/remove_star.ts +70 -0
- package/fake-snippets-api/utils/normalizeProjectFilePath.ts +60 -0
- package/package.json +4 -3
- package/src/App.tsx +5 -1
- package/src/components/DownloadButtonAndMenu.tsx +21 -11
- package/src/components/OrderPreviewContent.tsx +1 -1
- package/src/components/PreviewContent.tsx +1 -1
- package/src/components/ViewPackagePage/components/file-explorer.tsx +26 -77
- package/src/components/ViewPackagePage/components/main-content-header.tsx +32 -39
- package/src/components/ViewPackagePage/components/mobile-sidebar.tsx +44 -6
- package/src/components/ViewPackagePage/components/package-header.tsx +54 -21
- package/src/components/ViewPackagePage/components/repo-page-content.tsx +76 -69
- package/src/components/ViewPackagePage/components/sidebar-about-section.tsx +25 -19
- package/src/components/ViewPackagePage/components/sidebar-releases-section.tsx +13 -9
- package/src/components/ViewPackagePage/components/sidebar.tsx +2 -2
- package/src/components/ViewPackagePage/components/tab-views/3d-view.tsx +25 -4
- package/src/components/ViewPackagePage/components/tab-views/bom-view.tsx +25 -4
- package/src/components/ViewPackagePage/components/tab-views/files-view.tsx +135 -33
- package/src/components/ViewPackagePage/components/tab-views/pcb-view.tsx +31 -4
- package/src/components/ViewPackagePage/components/tab-views/schematic-view.tsx +31 -4
- package/src/components/ViewPackagePage/hooks/use-current-package-circuit-json.ts +46 -0
- package/src/components/ViewPackagePage/utils/is-within-directory.ts +32 -0
- package/src/hooks/use-current-package-id.ts +3 -0
- package/src/hooks/use-current-package-info.ts +8 -0
- package/src/hooks/use-current-snippet-id.ts +7 -4
- package/src/hooks/use-fork-package-mutation.ts +1 -4
- package/src/hooks/use-package-files.ts +6 -2
- package/src/hooks/use-package-release.ts +1 -1
- package/src/hooks/use-package-stars.ts +86 -0
- package/src/lib/utils/timeAgo.ts +9 -0
- package/src/pages/user-profile.tsx +17 -11
- package/src/pages/view-package.tsx +14 -15
- package/public/placeholder-logo.png +0 -0
- package/public/placeholder-logo.svg +0 -1
- package/public/placeholder-user.jpg +0 -0
- package/public/placeholder.jpg +0 -0
- package/public/placeholder.svg +0 -1
- package/src/components/ViewPackagePage/components/repo-tab-header.tsx +0 -12
- package/src/components/ViewPackagePage/simulate-page.tsx +0 -120
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
import { getTestServer } from "bun-tests/fake-snippets-api/fixtures/get-test-server"
|
|
2
|
+
import { expect, test } from "bun:test"
|
|
3
|
+
|
|
4
|
+
test("add star to package using package_id", async () => {
|
|
5
|
+
const { axios } = await getTestServer()
|
|
6
|
+
|
|
7
|
+
// Create a test package using the create endpoint
|
|
8
|
+
const newPackageData = {
|
|
9
|
+
name: "test-package",
|
|
10
|
+
description: "Test Description",
|
|
11
|
+
}
|
|
12
|
+
const createResponse = await axios.post(
|
|
13
|
+
"/api/packages/create",
|
|
14
|
+
newPackageData,
|
|
15
|
+
)
|
|
16
|
+
expect(createResponse.status).toBe(200)
|
|
17
|
+
const createdPackage = createResponse.data.package
|
|
18
|
+
|
|
19
|
+
// Star the package using package_id
|
|
20
|
+
const response = await axios.post("/api/packages/add_star", {
|
|
21
|
+
package_id: createdPackage.package_id,
|
|
22
|
+
})
|
|
23
|
+
|
|
24
|
+
expect(response.status).toBe(200)
|
|
25
|
+
expect(response.data.ok).toBe(true)
|
|
26
|
+
|
|
27
|
+
// Verify star was added by checking the package again
|
|
28
|
+
const getResponse = await axios.get("/api/packages/get", {
|
|
29
|
+
params: { package_id: createdPackage.package_id },
|
|
30
|
+
})
|
|
31
|
+
|
|
32
|
+
expect(getResponse.status).toBe(200)
|
|
33
|
+
expect(getResponse.data.package.star_count).toBe(1)
|
|
34
|
+
expect(getResponse.data.package.is_starred).toBe(true)
|
|
35
|
+
})
|
|
36
|
+
|
|
37
|
+
test("add star to package using name", async () => {
|
|
38
|
+
const { axios } = await getTestServer()
|
|
39
|
+
|
|
40
|
+
// Create a test package using the create endpoint
|
|
41
|
+
const newPackageData = {
|
|
42
|
+
name: "test-package-2",
|
|
43
|
+
description: "Test Description",
|
|
44
|
+
}
|
|
45
|
+
const createResponse = await axios.post(
|
|
46
|
+
"/api/packages/create",
|
|
47
|
+
newPackageData,
|
|
48
|
+
)
|
|
49
|
+
expect(createResponse.status).toBe(200)
|
|
50
|
+
const createdPackage = createResponse.data.package
|
|
51
|
+
|
|
52
|
+
// Star the package using name
|
|
53
|
+
const response = await axios.post("/api/packages/add_star", {
|
|
54
|
+
name: createdPackage.name,
|
|
55
|
+
})
|
|
56
|
+
|
|
57
|
+
expect(response.status).toBe(200)
|
|
58
|
+
expect(response.data.ok).toBe(true)
|
|
59
|
+
|
|
60
|
+
// Verify star was added by checking the package again
|
|
61
|
+
const getResponse = await axios.get("/api/packages/get", {
|
|
62
|
+
params: { package_id: createdPackage.package_id },
|
|
63
|
+
})
|
|
64
|
+
|
|
65
|
+
expect(getResponse.status).toBe(200)
|
|
66
|
+
expect(getResponse.data.package.star_count).toBe(1)
|
|
67
|
+
})
|
|
68
|
+
|
|
69
|
+
test("add star to non-existent package", async () => {
|
|
70
|
+
const { axios } = await getTestServer()
|
|
71
|
+
|
|
72
|
+
try {
|
|
73
|
+
await axios.post(
|
|
74
|
+
"/api/packages/add_star",
|
|
75
|
+
{
|
|
76
|
+
package_id: "non-existent-id",
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
headers: {
|
|
80
|
+
Authorization: "Bearer 1234",
|
|
81
|
+
},
|
|
82
|
+
},
|
|
83
|
+
)
|
|
84
|
+
expect(true).toBe(false) // Should not reach here
|
|
85
|
+
} catch (error: any) {
|
|
86
|
+
expect(error.status).toBe(404)
|
|
87
|
+
expect(error.data.error.message).toBe("Package not found")
|
|
88
|
+
}
|
|
89
|
+
})
|
|
90
|
+
|
|
91
|
+
test("add star to non-existent package by name", async () => {
|
|
92
|
+
const { axios } = await getTestServer()
|
|
93
|
+
|
|
94
|
+
try {
|
|
95
|
+
await axios.post(
|
|
96
|
+
"/api/packages/add_star",
|
|
97
|
+
{
|
|
98
|
+
name: "non-existent-package",
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
headers: {
|
|
102
|
+
Authorization: "Bearer 1234",
|
|
103
|
+
},
|
|
104
|
+
},
|
|
105
|
+
)
|
|
106
|
+
expect(true).toBe(false) // Should not reach here
|
|
107
|
+
} catch (error: any) {
|
|
108
|
+
expect(error.status).toBe(404)
|
|
109
|
+
expect(error.data.error.message).toBe("Package not found")
|
|
110
|
+
}
|
|
111
|
+
})
|
|
112
|
+
|
|
113
|
+
test("add star to already starred package", async () => {
|
|
114
|
+
const { axios } = await getTestServer()
|
|
115
|
+
|
|
116
|
+
// Create a test package using the create endpoint
|
|
117
|
+
const newPackageData = {
|
|
118
|
+
name: "test-package-3",
|
|
119
|
+
description: "Test Description",
|
|
120
|
+
}
|
|
121
|
+
const createResponse = await axios.post(
|
|
122
|
+
"/api/packages/create",
|
|
123
|
+
newPackageData,
|
|
124
|
+
)
|
|
125
|
+
expect(createResponse.status).toBe(200)
|
|
126
|
+
const createdPackage = createResponse.data.package
|
|
127
|
+
|
|
128
|
+
// Star the package first time
|
|
129
|
+
await axios.post(
|
|
130
|
+
"/api/packages/add_star",
|
|
131
|
+
{
|
|
132
|
+
package_id: createdPackage.package_id,
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
headers: {
|
|
136
|
+
Authorization: "Bearer 1234",
|
|
137
|
+
},
|
|
138
|
+
},
|
|
139
|
+
)
|
|
140
|
+
|
|
141
|
+
// Try to star again
|
|
142
|
+
try {
|
|
143
|
+
await axios.post(
|
|
144
|
+
"/api/packages/add_star",
|
|
145
|
+
{
|
|
146
|
+
package_id: createdPackage.package_id,
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
headers: {
|
|
150
|
+
Authorization: "Bearer 1234",
|
|
151
|
+
},
|
|
152
|
+
},
|
|
153
|
+
)
|
|
154
|
+
expect(true).toBe(false) // Should not reach here
|
|
155
|
+
} catch (error: any) {
|
|
156
|
+
expect(error.status).toBe(400)
|
|
157
|
+
expect(error.data.error.message).toBe(
|
|
158
|
+
"You have already starred this package",
|
|
159
|
+
)
|
|
160
|
+
}
|
|
161
|
+
})
|
|
@@ -38,7 +38,7 @@ test("GET /api/packages/get - should return package by package_id", async () =>
|
|
|
38
38
|
expect(getResponse.status).toBe(200)
|
|
39
39
|
const responseBody = getResponse.data
|
|
40
40
|
expect(responseBody.ok).toBe(true)
|
|
41
|
-
expect(responseBody.package).
|
|
41
|
+
expect(responseBody.package).toBeDefined()
|
|
42
42
|
})
|
|
43
43
|
|
|
44
44
|
test("GET /api/packages/get - should return 404 if package not found", async () => {
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
import { getTestServer } from "bun-tests/fake-snippets-api/fixtures/get-test-server"
|
|
2
|
+
import { expect, test } from "bun:test"
|
|
3
|
+
|
|
4
|
+
test("remove star from package using package_id", async () => {
|
|
5
|
+
const { axios } = await getTestServer()
|
|
6
|
+
|
|
7
|
+
// Create a test package
|
|
8
|
+
const newPackageData = {
|
|
9
|
+
name: "test-package",
|
|
10
|
+
description: "Test Description",
|
|
11
|
+
}
|
|
12
|
+
const createResponse = await axios.post(
|
|
13
|
+
"/api/packages/create",
|
|
14
|
+
newPackageData,
|
|
15
|
+
)
|
|
16
|
+
expect(createResponse.status).toBe(200)
|
|
17
|
+
const createdPackage = createResponse.data.package
|
|
18
|
+
|
|
19
|
+
// Star the package first
|
|
20
|
+
await axios.post("/api/packages/add_star", {
|
|
21
|
+
package_id: createdPackage.package_id,
|
|
22
|
+
})
|
|
23
|
+
|
|
24
|
+
// Remove star from package
|
|
25
|
+
const response = await axios.post("/api/packages/remove_star", {
|
|
26
|
+
package_id: createdPackage.package_id,
|
|
27
|
+
})
|
|
28
|
+
|
|
29
|
+
expect(response.status).toBe(200)
|
|
30
|
+
expect(response.data.ok).toBe(true)
|
|
31
|
+
|
|
32
|
+
// Verify star was removed by checking the package again
|
|
33
|
+
const getResponse = await axios.get("/api/packages/get", {
|
|
34
|
+
params: { package_id: createdPackage.package_id },
|
|
35
|
+
})
|
|
36
|
+
|
|
37
|
+
expect(getResponse.status).toBe(200)
|
|
38
|
+
expect(getResponse.data.package.star_count).toBe(0)
|
|
39
|
+
})
|
|
40
|
+
|
|
41
|
+
test("remove star from package using name", async () => {
|
|
42
|
+
const { axios } = await getTestServer()
|
|
43
|
+
|
|
44
|
+
// Create a test package
|
|
45
|
+
const newPackageData = {
|
|
46
|
+
name: "test-package-2",
|
|
47
|
+
description: "Test Description",
|
|
48
|
+
}
|
|
49
|
+
const createResponse = await axios.post(
|
|
50
|
+
"/api/packages/create",
|
|
51
|
+
newPackageData,
|
|
52
|
+
)
|
|
53
|
+
expect(createResponse.status).toBe(200)
|
|
54
|
+
const createdPackage = createResponse.data.package
|
|
55
|
+
|
|
56
|
+
// Star the package first
|
|
57
|
+
await axios.post("/api/packages/add_star", {
|
|
58
|
+
package_id: createdPackage.package_id,
|
|
59
|
+
})
|
|
60
|
+
|
|
61
|
+
// Remove star using name
|
|
62
|
+
const response = await axios.post("/api/packages/remove_star", {
|
|
63
|
+
name: createdPackage.name,
|
|
64
|
+
})
|
|
65
|
+
|
|
66
|
+
expect(response.status).toBe(200)
|
|
67
|
+
expect(response.data.ok).toBe(true)
|
|
68
|
+
|
|
69
|
+
// Verify star was removed by checking the package again
|
|
70
|
+
const getResponse = await axios.get("/api/packages/get", {
|
|
71
|
+
params: { package_id: createdPackage.package_id },
|
|
72
|
+
headers: {
|
|
73
|
+
Authorization: "Bearer 1234",
|
|
74
|
+
},
|
|
75
|
+
})
|
|
76
|
+
|
|
77
|
+
expect(getResponse.status).toBe(200)
|
|
78
|
+
expect(getResponse.data.package.star_count).toBe(0)
|
|
79
|
+
})
|
|
80
|
+
|
|
81
|
+
test("remove star from non-existent package", async () => {
|
|
82
|
+
const { axios } = await getTestServer()
|
|
83
|
+
|
|
84
|
+
try {
|
|
85
|
+
await axios.post(
|
|
86
|
+
"/api/packages/remove_star",
|
|
87
|
+
{
|
|
88
|
+
package_id: "non-existent-id",
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
headers: {
|
|
92
|
+
Authorization: "Bearer 1234",
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
)
|
|
96
|
+
expect(true).toBe(false) // Should not reach here
|
|
97
|
+
} catch (error: any) {
|
|
98
|
+
expect(error.status).toBe(404)
|
|
99
|
+
expect(error.data.error.message).toBe("Package not found")
|
|
100
|
+
}
|
|
101
|
+
})
|
|
102
|
+
|
|
103
|
+
test("remove star from non-existent package by name", async () => {
|
|
104
|
+
const { axios } = await getTestServer()
|
|
105
|
+
|
|
106
|
+
try {
|
|
107
|
+
await axios.post(
|
|
108
|
+
"/api/packages/remove_star",
|
|
109
|
+
{
|
|
110
|
+
name: "non-existent-package",
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
headers: {
|
|
114
|
+
Authorization: "Bearer 1234",
|
|
115
|
+
},
|
|
116
|
+
},
|
|
117
|
+
)
|
|
118
|
+
expect(true).toBe(false) // Should not reach here
|
|
119
|
+
} catch (error: any) {
|
|
120
|
+
expect(error.status).toBe(404)
|
|
121
|
+
expect(error.data.error.message).toBe("Package not found")
|
|
122
|
+
}
|
|
123
|
+
})
|
|
124
|
+
|
|
125
|
+
test("remove star from unstarred package", async () => {
|
|
126
|
+
const { axios } = await getTestServer()
|
|
127
|
+
|
|
128
|
+
// Create a test package
|
|
129
|
+
const newPackageData = {
|
|
130
|
+
name: "test-package-3",
|
|
131
|
+
description: "Test Description",
|
|
132
|
+
}
|
|
133
|
+
const createResponse = await axios.post(
|
|
134
|
+
"/api/packages/create",
|
|
135
|
+
newPackageData,
|
|
136
|
+
)
|
|
137
|
+
expect(createResponse.status).toBe(200)
|
|
138
|
+
const createdPackage = createResponse.data.package
|
|
139
|
+
|
|
140
|
+
// Try to remove star without starring first
|
|
141
|
+
try {
|
|
142
|
+
await axios.post(
|
|
143
|
+
"/api/packages/remove_star",
|
|
144
|
+
{
|
|
145
|
+
package_id: createdPackage.package_id,
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
headers: {
|
|
149
|
+
Authorization: "Bearer 1234",
|
|
150
|
+
},
|
|
151
|
+
},
|
|
152
|
+
)
|
|
153
|
+
expect(true).toBe(false) // Should not reach here
|
|
154
|
+
} catch (error: any) {
|
|
155
|
+
expect(error.status).toBe(400)
|
|
156
|
+
expect(error.data.error.message).toBe("You have not starred this package")
|
|
157
|
+
}
|
|
158
|
+
})
|
package/bun.lock
CHANGED
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"country-list": "^2.3.0",
|
|
69
69
|
"date-fns": "^4.1.0",
|
|
70
70
|
"dsn-converter": "^0.0.60",
|
|
71
|
-
"easyeda": "^0.0.
|
|
71
|
+
"easyeda": "^0.0.129",
|
|
72
72
|
"embla-carousel-react": "^8.3.0",
|
|
73
73
|
"extract-codefence": "^0.0.4",
|
|
74
74
|
"fflate": "^0.8.2",
|
|
@@ -90,6 +90,7 @@
|
|
|
90
90
|
"react-helmet": "^6.1.0",
|
|
91
91
|
"react-helmet-async": "^2.0.5",
|
|
92
92
|
"react-hook-form": "^7.53.0",
|
|
93
|
+
"react-hot-toast": "^2.5.2",
|
|
93
94
|
"react-intersection-observer": "^9.14.1",
|
|
94
95
|
"react-query": "^3.39.3",
|
|
95
96
|
"react-resizable-panels": "^2.1.3",
|
|
@@ -113,7 +114,7 @@
|
|
|
113
114
|
"@playwright/test": "^1.48.0",
|
|
114
115
|
"@tscircuit/core": "^0.0.356",
|
|
115
116
|
"@tscircuit/prompt-benchmarks": "^0.0.28",
|
|
116
|
-
"@tscircuit/runframe": "^0.0.
|
|
117
|
+
"@tscircuit/runframe": "^0.0.304",
|
|
117
118
|
"@types/babel__standalone": "^7.1.7",
|
|
118
119
|
"@types/bun": "^1.1.10",
|
|
119
120
|
"@types/country-list": "^2.1.4",
|
|
@@ -690,6 +691,10 @@
|
|
|
690
691
|
|
|
691
692
|
"@tscircuit/capacity-autorouter": ["@tscircuit/capacity-autorouter@0.0.36", "", { "peerDependencies": { "typescript": "^5.7.3" } }, "sha512-OLbHGs4QjodqTyX4c67QD7SNsRGHncqtjXWOh2zCnpWn3hTVkFxZFwJsc/CEA59bcKOqA4YwzwMZhRBC2tK2Qg=="],
|
|
692
693
|
|
|
694
|
+
"@tscircuit/checks": ["@tscircuit/checks@0.0.30", "", { "dependencies": { "@tscircuit/math-utils": "^0.0.12", "circuit-json-to-connectivity-map": "^0.0.19" }, "peerDependencies": { "circuit-json": "*", "typescript": "^5.5.3" } }, "sha512-2kB/XDSIWlJCfQqqHzGgStLWsaBEqPIyP5PyLHh79OUNswQPFglHHoYtNsOmcuGR/JpQni6TXg9Ngp/BBdNGIA=="],
|
|
695
|
+
|
|
696
|
+
"@tscircuit/circuit-json-util": ["@tscircuit/circuit-json-util@0.0.45", "", { "dependencies": { "parsel-js": "^1.1.2" }, "peerDependencies": { "circuit-json": "*", "transformation-matrix": "*", "zod": "*" } }, "sha512-zIcI5Fp1UllIm/JsjJsXhmgRDYReDUddJtylh5PZnkRK3ZVkMj+HV34A39qGHeYDg3bhf/89OQoxz+1fL68jug=="],
|
|
697
|
+
|
|
693
698
|
"@tscircuit/core": ["@tscircuit/core@0.0.356", "", { "dependencies": { "@lume/kiwi": "^0.4.3", "@tscircuit/capacity-autorouter": "^0.0.36", "@tscircuit/infgrid-ijump-astar": "^0.0.33", "@tscircuit/math-utils": "^0.0.9", "@tscircuit/props": "^0.0.163", "@tscircuit/schematic-autolayout": "^0.0.6", "@tscircuit/soup-util": "^0.0.41", "circuit-json": "^0.0.153", "circuit-json-to-connectivity-map": "^0.0.17", "format-si-unit": "^0.0.3", "nanoid": "^5.0.7", "performance-now": "^2.1.0", "react-reconciler": "^0.31.0", "react-reconciler-18": "npm:react-reconciler@0.29.2", "schematic-symbols": "^0.0.121", "transformation-matrix": "^2.16.1", "zod": "^3.23.8" }, "peerDependencies": { "@tscircuit/footprinter": "*", "typescript": "^5.0.0" } }, "sha512-sSKgFR26fWwZnt3SySILKOMUB58yF/xdSB1fa3W0yFmq91S9JF9/Hp2MUPSdED+UwYjjFQLF/+jDfO6jnGCDgg=="],
|
|
694
699
|
|
|
695
700
|
"@tscircuit/create-snippet-url": ["@tscircuit/create-snippet-url@0.0.8", "", { "dependencies": { "fflate": "^0.8.2" }, "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-VMixgwQRsOXlQGwVh2RZIFLLtsn8YWl2Bht61T26MHNM71A1Wzo5qGZtqcdbVkFnvlA42KmdVVjvxYDvEyWdJw=="],
|
|
@@ -698,7 +703,7 @@
|
|
|
698
703
|
|
|
699
704
|
"@tscircuit/featured-snippets": ["@tscircuit/featured-snippets@0.0.1", "", { "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-SNUbCQmyaAaWq7DqqDbYlZkYttbfaObtp5rOheZvlJ2TGYvooECFpB8SzNo06bqKGoIwNjgaAGUTB2DcxdX7ow=="],
|
|
700
705
|
|
|
701
|
-
"@tscircuit/file-server": ["@tscircuit/file-server@0.0.
|
|
706
|
+
"@tscircuit/file-server": ["@tscircuit/file-server@0.0.18", "", { "dependencies": { "winterspec": "^0.0.86", "zod": "^3.23.8", "zustand": "^4.5.5", "zustand-hoist": "^2.0.1" }, "peerDependencies": { "typescript": "^5.0.0" }, "bin": { "file-server": "dist/cli.js" } }, "sha512-DvictE21bSxPSsejmaIf9O9sMjGsC4rtznUi5ttCRxkPZLVOb28XuqpcsHanNgDEwjJLCKX/9deM7WMTh7FslQ=="],
|
|
702
707
|
|
|
703
708
|
"@tscircuit/footprinter": ["@tscircuit/footprinter@0.0.124", "", { "dependencies": { "@tscircuit/mm": "^0.0.8", "zod": "^3.23.8" }, "peerDependencies": { "circuit-json": "*" } }, "sha512-sWYTOILmxC6VchCa9877O+wFr6N44Mi0isAEeB/OGnUfjq2iCMgrb0C4scpYDbiStgYqHPk2hAkTFa7Yao6XjA=="],
|
|
704
709
|
|
|
@@ -712,7 +717,7 @@
|
|
|
712
717
|
|
|
713
718
|
"@tscircuit/mm": ["@tscircuit/mm@0.0.8", "", { "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-nl7nxE7AhARbKuobflI0LUzoir7+wJyvwfPw6bzA/O0Q3YTcH3vBkU/Of+V/fp6ht+AofiCXj7YAH9E446138Q=="],
|
|
714
719
|
|
|
715
|
-
"@tscircuit/pcb-viewer": ["@tscircuit/pcb-viewer@1.11.
|
|
720
|
+
"@tscircuit/pcb-viewer": ["@tscircuit/pcb-viewer@1.11.91", "", { "dependencies": { "@emotion/css": "^11.11.2", "@tscircuit/math-utils": "^0.0.13", "circuit-json-to-connectivity-map": "^0.0.20", "circuit-to-svg": "^0.0.36", "color": "^4.2.3", "graphics-debug": "^0.0.24", "react-supergrid": "^1.0.10", "react-toastify": "^10.0.5", "transformation-matrix": "^2.13.0", "zustand": "^4.5.2" }, "peerDependencies": { "@tscircuit/core": "*", "react": "*" } }, "sha512-NzhKsX2EaZqwFPyoVaGCAG+9whcjXWsy4Br5SAV+E0xcpJeJ8Is5dZ5nFo47LkspxOqhSLnX/6URwyfkh3XSUQ=="],
|
|
716
721
|
|
|
717
722
|
"@tscircuit/prompt-benchmarks": ["@tscircuit/prompt-benchmarks@0.0.28", "", { "dependencies": { "@babel/standalone": "^7.25.7", "@tscircuit/featured-snippets": "^0.0.1", "@tscircuit/footprinter": "^0.0.102", "debug": "^4.3.7", "dotenv": "^16.4.7", "evalite": "^0.8.2", "extract-codefence": "^0.0.4", "toml": "^3.0.0" }, "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-SOhKWAWp3bSvUvbGbtl1ygyyDhF42IbezS965fyUz5cUMJVFyGOoRD0kJak78NVqmHHDMRRPf1R8c5UUaIdBnw=="],
|
|
718
723
|
|
|
@@ -720,7 +725,7 @@
|
|
|
720
725
|
|
|
721
726
|
"@tscircuit/routing": ["@tscircuit/routing@1.3.5", "", { "dependencies": { "bs58": "^5.0.0", "pathfinding": "^0.4.18", "react-error-boundary": "^4.0.11" } }, "sha512-6qHGsKC731TbeaqiQToHS5Zao+93nv99LjbpI479Bqz8Avc8CAUax9QnhMhJ5KvYQv5zLtjv2ywezzRxZf09ZA=="],
|
|
722
727
|
|
|
723
|
-
"@tscircuit/runframe": ["@tscircuit/runframe@0.0.
|
|
728
|
+
"@tscircuit/runframe": ["@tscircuit/runframe@0.0.304", "", { "dependencies": { "@radix-ui/react-alert-dialog": "^1.1.6", "@radix-ui/react-checkbox": "^1.1.4", "@radix-ui/react-dropdown-menu": "^2.1.4", "@radix-ui/react-icons": "^1.3.2", "@radix-ui/react-progress": "^1.1.2", "@radix-ui/react-slot": "^1.1.1", "@radix-ui/react-tabs": "^1.1.2", "@tscircuit/3d-viewer": "^0.0.185", "@tscircuit/assembly-viewer": "^0.0.1", "@tscircuit/core": "^0.0.361", "@tscircuit/create-snippet-url": "^0.0.8", "@tscircuit/eval": "^0.0.146", "@tscircuit/file-server": "^0.0.18", "@tscircuit/pcb-viewer": "^1.11.91", "@tscircuit/props": "^0.0.165", "@tscircuit/schematic-viewer": "2.0.9", "circuit-to-svg": "^0.0.114", "clsx": "^2.1.1", "comlink": "^4.4.2", "cssnano": "^7.0.6", "jscad-fiber": "^0.0.77", "lucide-react": "^0.473.0", "schematic-symbols": "^0.0.111", "tailwind-merge": "^2.6.0", "tailwindcss-animate": "^1.0.7" }, "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-1yHXAbgP/8qtcCch+HhTt7hQM5rgS1nZgLRDvLE/sG+l+Nd1XJxzwnmaC4a6rYbXJGMwOyBvPYaDK05AxS7BNg=="],
|
|
724
729
|
|
|
725
730
|
"@tscircuit/schematic-autolayout": ["@tscircuit/schematic-autolayout@0.0.6", "", { "dependencies": { "@tscircuit/soup-util": "^0.0.38", "transformation-matrix": "^2.16.1" } }, "sha512-34cQxtlSylBKyHkzaMBCynaWJgN9c/mWm7cz63StTYIafKmfFs383K8Xoc4QX8HXCvVrHYl1aK15onZua9MxeA=="],
|
|
726
731
|
|
|
@@ -1184,7 +1189,7 @@
|
|
|
1184
1189
|
|
|
1185
1190
|
"eastasianwidth": ["eastasianwidth@0.2.0", "", {}, "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="],
|
|
1186
1191
|
|
|
1187
|
-
"easyeda": ["easyeda@0.0.
|
|
1192
|
+
"easyeda": ["easyeda@0.0.129", "", { "dependencies": { "@tscircuit/mm": "^0.0.8", "commander": "^12.1.0", "transformation-matrix": "^2.16.1", "zod": "^3.24.2" }, "peerDependencies": { "typescript": "^5.5.2" }, "bin": { "easyeda-converter": "dist/cli/main.js", "easyeda": "dist/cli/main.js" } }, "sha512-O42KoxeFvMzN+mgqUdIK7hWv0JXKcuW5D8FODs/FanEXWrZX3EVJ+OJaE/dao3RqCydbZXlBw52kjTlGz+BP1g=="],
|
|
1188
1193
|
|
|
1189
1194
|
"edge-runtime": ["edge-runtime@2.5.10", "", { "dependencies": { "@edge-runtime/format": "2.2.1", "@edge-runtime/ponyfill": "2.4.2", "@edge-runtime/vm": "3.2.0", "async-listen": "3.0.1", "mri": "1.2.0", "picocolors": "1.0.0", "pretty-ms": "7.0.1", "signal-exit": "4.0.2", "time-span": "4.0.0" }, "bin": { "edge-runtime": "dist/cli/index.js" } }, "sha512-oe6JjFbU1MbISzeSBMHqmzBhNEwmy2AYDY0LxStl8FAIWSGdGO+CqzWub9nbgmANuJYPXZA0v3XAlbxeKV/Omw=="],
|
|
1190
1195
|
|
|
@@ -1344,6 +1349,8 @@
|
|
|
1344
1349
|
|
|
1345
1350
|
"glsl-noise": ["glsl-noise@0.0.0", "", {}, "sha512-b/ZCF6amfAUb7dJM/MxRs7AetQEahYzJ8PtgfrmEdtw6uyGOr+ZSGtgjFm6mfsBkxJ4d2W7kg+Nlqzqvn3Bc0w=="],
|
|
1346
1351
|
|
|
1352
|
+
"goober": ["goober@2.1.16", "", { "peerDependencies": { "csstype": "^3.0.10" } }, "sha512-erjk19y1U33+XAMe1VTvIONHYoSqE4iS7BYUZfHaqeohLmnC0FdxEh7rQU+6MZ4OajItzjZFSRtVANrQwNq6/g=="],
|
|
1353
|
+
|
|
1347
1354
|
"gopd": ["gopd@1.2.0", "", {}, "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="],
|
|
1348
1355
|
|
|
1349
1356
|
"graceful-fs": ["graceful-fs@4.2.11", "", {}, "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="],
|
|
@@ -1890,6 +1897,8 @@
|
|
|
1890
1897
|
|
|
1891
1898
|
"react-hook-form": ["react-hook-form@7.54.2", "", { "peerDependencies": { "react": "^16.8.0 || ^17 || ^18 || ^19" } }, "sha512-eHpAUgUjWbZocoQYUHposymRb4ZP6d0uwUnooL2uOybA9/3tPUvoAKqEWK1WaSiTxxOfTpffNZP7QwlnM3/gEg=="],
|
|
1892
1899
|
|
|
1900
|
+
"react-hot-toast": ["react-hot-toast@2.5.2", "", { "dependencies": { "csstype": "^3.1.3", "goober": "^2.1.16" }, "peerDependencies": { "react": ">=16", "react-dom": ">=16" } }, "sha512-Tun3BbCxzmXXM7C+NI4qiv6lT0uwGh4oAfeJyNOjYUejTsm35mK9iCaYLGv8cBz9L5YxZLx/2ii7zsIwPtPUdw=="],
|
|
1901
|
+
|
|
1893
1902
|
"react-intersection-observer": ["react-intersection-observer@9.16.0", "", { "peerDependencies": { "react": "^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0" }, "optionalPeers": ["react-dom"] }, "sha512-w9nJSEp+DrW9KmQmeWHQyfaP6b03v+TdXynaoA964Wxt7mdR3An11z4NNCQgL4gKSK7y1ver2Fq+JKH6CWEzUA=="],
|
|
1894
1903
|
|
|
1895
1904
|
"react-is": ["react-is@18.3.1", "", {}, "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg=="],
|
|
@@ -2330,6 +2339,10 @@
|
|
|
2330
2339
|
|
|
2331
2340
|
"@tscircuit/assembly-viewer/@tscircuit/core": ["@tscircuit/core@file:.yalc/@tscircuit/core", { "dependencies": { "@lume/kiwi": "^0.4.3", "@tscircuit/capacity-autorouter": "^0.0.36", "@tscircuit/infgrid-ijump-astar": "^0.0.33", "@tscircuit/math-utils": "^0.0.9", "@tscircuit/props": "^0.0.163", "@tscircuit/schematic-autolayout": "^0.0.6", "@tscircuit/soup-util": "^0.0.41", "circuit-json": "^0.0.153", "circuit-json-to-connectivity-map": "^0.0.17", "format-si-unit": "^0.0.3", "nanoid": "^5.0.7", "performance-now": "^2.1.0", "react-reconciler": "^0.31.0", "react-reconciler-18": "npm:react-reconciler@0.29.2", "schematic-symbols": "^0.0.121", "transformation-matrix": "^2.16.1", "zod": "^3.23.8" }, "peerDependencies": { "@tscircuit/footprinter": "*", "typescript": "^5.0.0" } }],
|
|
2332
2341
|
|
|
2342
|
+
"@tscircuit/checks/@tscircuit/math-utils": ["@tscircuit/math-utils@0.0.12", "", { "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-pYk39tdEdgyaoT2kHd+1QKVVfztOKVn+BoyxTH9HREWaPsf3C90VkY2blRUKS26VcEzvcbxKlURW0JGkUgqlOg=="],
|
|
2343
|
+
|
|
2344
|
+
"@tscircuit/checks/circuit-json-to-connectivity-map": ["circuit-json-to-connectivity-map@0.0.19", "", { "dependencies": { "@tscircuit/math-utils": "^0.0.9" }, "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-EJgeuBjCCvlKC+CjnR+yKppSi+/027x3uvXr0PR77iofR629BnVDgWv/0wKLJU7YlklcbpyUvOPyPCE1k2+WQQ=="],
|
|
2345
|
+
|
|
2333
2346
|
"@tscircuit/core/@tscircuit/math-utils": ["@tscircuit/math-utils@0.0.9", "", { "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-sPzfXndijet8z29X6f5vnSZddiso2tRg7m6rB+268bVj60mxnxUMD14rKuMlLn6n84fMOpD/X7pRTZUfi6M+Tg=="],
|
|
2334
2347
|
|
|
2335
2348
|
"@tscircuit/core/@tscircuit/props": ["@tscircuit/props@0.0.163", "", { "peerDependencies": { "@tscircuit/layout": "*", "circuit-json": "*", "react": "*", "zod": "*" } }, "sha512-AVs17q0L7IqpXJ00k1QWTjGZ2neP/GsJwxlu5zI4+WxA6uaVJ3F9peVH3+pfmPQzXcrO1E+JFUGcXHbdGaF0oQ=="],
|
|
@@ -2340,21 +2353,23 @@
|
|
|
2340
2353
|
|
|
2341
2354
|
"@tscircuit/file-server/winterspec": ["winterspec@0.0.86", "", { "dependencies": { "@anatine/zod-openapi": "^2.2.3", "@edge-runtime/node-utils": "^2.3.0", "@edge-runtime/primitives": "^4.1.0", "async-mutex": "^0.4.1", "birpc": "^0.2.17", "bundle-require": "^4.0.2", "camelcase": "^8.0.0", "clipanion": "^4.0.0-rc.3", "edge-runtime": "^2.5.9", "esbuild": "^0.19.11", "globby": "^14.0.0", "human-readable": "^0.2.1", "kleur": "^4.1.5", "make-vfs": "^1.1.0", "next-route-matcher": "^1.0.2", "object-hash": "^3.0.0", "ora": "^8.0.1", "ts-morph": "^21.0.1", "watcher": "^2.3.0", "yargs": "^17.7.2", "zod": "^3.22.4" }, "peerDependencies": { "@ava/get-port": ">=2.0.0", "typescript": ">=4.0.0" }, "optionalPeers": ["@ava/get-port", "typescript"], "bin": { "winterspec": "dist/cli/cli.js" } }, "sha512-lErhEec/+hflbzyAHywJsyKs6nl5G/trBQX32D9R4YD3CJQ7BgSKgkaHu7Gm3Yk9Rr6KlvLTm6lYyPfDCTY6mA=="],
|
|
2342
2355
|
|
|
2343
|
-
"@tscircuit/pcb-viewer/@tscircuit/
|
|
2356
|
+
"@tscircuit/pcb-viewer/@tscircuit/math-utils": ["@tscircuit/math-utils@0.0.13", "", { "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-Iq3HmMas4qRClFLzB0LrlLcQAlcIXU5dTo9dAM4TjU/ztPoOyqm5BZYV//UVwM/abdkRZD3kTPEBpPvqnSHnCQ=="],
|
|
2344
2357
|
|
|
2345
|
-
"@tscircuit/pcb-viewer/circuit-json-to-connectivity-map": ["circuit-json-to-connectivity-map@0.0.
|
|
2358
|
+
"@tscircuit/pcb-viewer/circuit-json-to-connectivity-map": ["circuit-json-to-connectivity-map@0.0.20", "", { "dependencies": { "@tscircuit/math-utils": "^0.0.9" }, "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-q8McyEomIZdprsSjGQv5puKLlMOM5w9EGRYA4TxaHPBLe03BoqVoN8wQxhdqmmbe4Tpa30KQFH9eISGVMs6HGg=="],
|
|
2346
2359
|
|
|
2347
2360
|
"@tscircuit/pcb-viewer/circuit-to-svg": ["circuit-to-svg@0.0.36", "", { "dependencies": { "@tscircuit/footprinter": "^0.0.57", "@tscircuit/routing": "^1.3.5", "@tscircuit/soup": "*", "@tscircuit/soup-util": "^0.0.28", "@types/node": "^22.5.5", "schematic-symbols": "^0.0.17", "svgson": "^5.3.1", "transformation-matrix": "^2.16.1" } }, "sha512-TGsi4htATqGIJULmUn1NZlN/6ORmZYxiXzBex4fSjzDjPmeMnbSPVefR1SZfxBCE/ucIwCdffRw8v9/ydIu6Wg=="],
|
|
2348
2361
|
|
|
2349
2362
|
"@tscircuit/prompt-benchmarks/@tscircuit/footprinter": ["@tscircuit/footprinter@0.0.102", "", { "dependencies": { "@tscircuit/mm": "^0.0.8", "zod": "^3.23.8" }, "peerDependencies": { "circuit-json": "*" } }, "sha512-cuc5iUU42uIa6FpQzMILSaa41TZnEGxvXDn3SoE/tnDFvUrJ+DPsCuiGu7PMnWjy+ip7XjCbghrVkFB4GK3kCg=="],
|
|
2350
2363
|
|
|
2351
|
-
"@tscircuit/runframe/@tscircuit/3d-viewer": ["@tscircuit/3d-viewer@0.0.
|
|
2364
|
+
"@tscircuit/runframe/@tscircuit/3d-viewer": ["@tscircuit/3d-viewer@0.0.185", "", { "dependencies": { "@jscad/regl-renderer": "^2.6.12", "@jscad/stl-serializer": "^2.1.20", "@react-three/drei": "^9.121.4", "@react-three/fiber": "^8.17.14", "@tscircuit/core": "^0.0.361", "@tscircuit/props": "^0.0.165", "@tscircuit/soup-util": "^0.0.41", "jscad-electronics": "^0.0.27", "jscad-fiber": "^0.0.79", "jscad-planner": "^0.0.12", "react": "^18.3.1", "react-dom": "^18.3.1", "react-use-gesture": "^9.1.3" }, "peerDependencies": { "three": "*" } }, "sha512-CGg4d4TT9ltOFKXLnhn++a2tiFSbFxAxSFuZCCS4TpdafONKBaiuMZuIatL8XV4IxSvDphB0QxfkeQpoioukIw=="],
|
|
2352
2365
|
|
|
2353
|
-
"@tscircuit/runframe/@tscircuit/
|
|
2366
|
+
"@tscircuit/runframe/@tscircuit/core": ["@tscircuit/core@0.0.361", "", { "dependencies": { "@lume/kiwi": "^0.4.3", "@tscircuit/capacity-autorouter": "^0.0.49", "@tscircuit/checks": "^0.0.30", "@tscircuit/circuit-json-util": "^0.0.45", "@tscircuit/infgrid-ijump-astar": "^0.0.33", "@tscircuit/math-utils": "^0.0.12", "@tscircuit/props": "^0.0.165", "@tscircuit/schematic-autolayout": "^0.0.6", "@tscircuit/soup-util": "^0.0.41", "circuit-json": "^0.0.153", "circuit-json-to-connectivity-map": "^0.0.17", "format-si-unit": "^0.0.3", "nanoid": "^5.0.7", "performance-now": "^2.1.0", "react-reconciler": "^0.31.0", "react-reconciler-18": "npm:react-reconciler@0.29.2", "schematic-symbols": "^0.0.121", "transformation-matrix": "^2.16.1", "zod": "^3.23.8" }, "peerDependencies": { "@tscircuit/footprinter": "*", "typescript": "^5.0.0" } }, "sha512-A2Kmd0TdXkN9f/xW8ouDcQVSJC6VE5/Ds5mMN1pdXXSNR/q2TH25Hgr1Q0dizeu9pmQplZsUL/OOvCWhmZQIAw=="],
|
|
2354
2367
|
|
|
2355
|
-
"@tscircuit/runframe/@tscircuit/
|
|
2368
|
+
"@tscircuit/runframe/@tscircuit/eval": ["@tscircuit/eval@0.0.146", "", { "peerDependencies": { "@tscircuit/core": "*", "circuit-json": "*", "jscad-fiber": "*", "typescript": "^5.0.0" } }, "sha512-8kI7WYEDi1gvNL001v53Z3RpFYpbdJaG4knQWGDhmHmsq6oJsbfZkyZGK6/ZJ4AMyxJQ6muPy+EqPNh1yvrFAg=="],
|
|
2356
2369
|
|
|
2357
|
-
"@tscircuit/runframe/
|
|
2370
|
+
"@tscircuit/runframe/@tscircuit/props": ["@tscircuit/props@0.0.165", "", { "peerDependencies": { "@tscircuit/layout": "*", "circuit-json": "*", "react": "*", "zod": "*" } }, "sha512-Hdd8FYR5TBxe1TDVqKQH7JXO2vFAtKsu1L4dQFQisqN5Mxi89OwNT+d0ocrTENjidaJARF9RclOwrz9Ud8o0Sw=="],
|
|
2371
|
+
|
|
2372
|
+
"@tscircuit/runframe/circuit-to-svg": ["circuit-to-svg@0.0.114", "", { "dependencies": { "@tscircuit/footprinter": "^0.0.91", "@tscircuit/routing": "^1.3.5", "@tscircuit/soup-util": "^0.0.41", "@types/node": "^22.5.5", "bun-types": "^1.1.40", "svgson": "^5.3.1", "transformation-matrix": "^2.16.1" }, "peerDependencies": { "circuit-json": "*", "schematic-symbols": "*" } }, "sha512-a+F+8e040upymUHRYUklV9MSw2QPn8nCc5ikUXUx/O8ZWaBlIHouVIdapVFlWBFPhXXhGecLymUD/uFnGSnIHA=="],
|
|
2358
2373
|
|
|
2359
2374
|
"@tscircuit/runframe/lucide-react": ["lucide-react@0.473.0", "", { "peerDependencies": { "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-KW6u5AKeIjkvrxXZ6WuCu9zHE/gEYSXCay+Gre2ZoInD0Je/e3RBtP4OHpJVJ40nDklSvjVKjgH7VU8/e2dzRw=="],
|
|
2360
2375
|
|
|
@@ -2586,6 +2601,8 @@
|
|
|
2586
2601
|
|
|
2587
2602
|
"@tscircuit/assembly-viewer/@tscircuit/core/circuit-json": ["circuit-json@0.0.153", "", { "dependencies": { "nanoid": "^5.0.7", "zod": "^3.23.6" } }, "sha512-gRjXgFOZam7yhVhXtwNa5YxFF4syd2hB/gIndEsuuwuy6YjDRSAhZk93oeiDY9+V81RuiBUYK11jahDn+dDEsQ=="],
|
|
2588
2603
|
|
|
2604
|
+
"@tscircuit/checks/circuit-json-to-connectivity-map/@tscircuit/math-utils": ["@tscircuit/math-utils@0.0.9", "", { "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-sPzfXndijet8z29X6f5vnSZddiso2tRg7m6rB+268bVj60mxnxUMD14rKuMlLn6n84fMOpD/X7pRTZUfi6M+Tg=="],
|
|
2605
|
+
|
|
2589
2606
|
"@tscircuit/eval/@tscircuit/core/@tscircuit/math-utils": ["@tscircuit/math-utils@0.0.9", "", { "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-sPzfXndijet8z29X6f5vnSZddiso2tRg7m6rB+268bVj60mxnxUMD14rKuMlLn6n84fMOpD/X7pRTZUfi6M+Tg=="],
|
|
2590
2607
|
|
|
2591
2608
|
"@tscircuit/eval/@tscircuit/core/@tscircuit/props": ["@tscircuit/props@0.0.163", "", { "peerDependencies": { "@tscircuit/layout": "*", "circuit-json": "*", "react": "*", "zod": "*" } }, "sha512-AVs17q0L7IqpXJ00k1QWTjGZ2neP/GsJwxlu5zI4+WxA6uaVJ3F9peVH3+pfmPQzXcrO1E+JFUGcXHbdGaF0oQ=="],
|
|
@@ -2598,14 +2615,6 @@
|
|
|
2598
2615
|
|
|
2599
2616
|
"@tscircuit/file-server/winterspec/kleur": ["kleur@4.1.5", "", {}, "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ=="],
|
|
2600
2617
|
|
|
2601
|
-
"@tscircuit/pcb-viewer/@tscircuit/core/@tscircuit/math-utils": ["@tscircuit/math-utils@0.0.9", "", { "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-sPzfXndijet8z29X6f5vnSZddiso2tRg7m6rB+268bVj60mxnxUMD14rKuMlLn6n84fMOpD/X7pRTZUfi6M+Tg=="],
|
|
2602
|
-
|
|
2603
|
-
"@tscircuit/pcb-viewer/@tscircuit/core/@tscircuit/props": ["@tscircuit/props@0.0.163", "", { "peerDependencies": { "@tscircuit/layout": "*", "circuit-json": "*", "react": "*", "zod": "*" } }, "sha512-AVs17q0L7IqpXJ00k1QWTjGZ2neP/GsJwxlu5zI4+WxA6uaVJ3F9peVH3+pfmPQzXcrO1E+JFUGcXHbdGaF0oQ=="],
|
|
2604
|
-
|
|
2605
|
-
"@tscircuit/pcb-viewer/@tscircuit/core/circuit-json": ["circuit-json@0.0.153", "", { "dependencies": { "nanoid": "^5.0.7", "zod": "^3.23.6" } }, "sha512-gRjXgFOZam7yhVhXtwNa5YxFF4syd2hB/gIndEsuuwuy6YjDRSAhZk93oeiDY9+V81RuiBUYK11jahDn+dDEsQ=="],
|
|
2606
|
-
|
|
2607
|
-
"@tscircuit/pcb-viewer/@tscircuit/core/circuit-json-to-connectivity-map": ["circuit-json-to-connectivity-map@0.0.17", "", { "dependencies": { "@tscircuit/math-utils": "^0.0.4" }, "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-0IlFTwGWFXzlrYSvXQocXi6pYriF/JKnfihfvnVZ4p60kMC+1QvtJdivW9C4I0VNXEe922xak70v3YZNJrjI1g=="],
|
|
2608
|
-
|
|
2609
2618
|
"@tscircuit/pcb-viewer/circuit-json-to-connectivity-map/@tscircuit/math-utils": ["@tscircuit/math-utils@0.0.9", "", { "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-sPzfXndijet8z29X6f5vnSZddiso2tRg7m6rB+268bVj60mxnxUMD14rKuMlLn6n84fMOpD/X7pRTZUfi6M+Tg=="],
|
|
2610
2619
|
|
|
2611
2620
|
"@tscircuit/pcb-viewer/circuit-to-svg/@tscircuit/footprinter": ["@tscircuit/footprinter@0.0.57", "", { "dependencies": { "@tscircuit/mm": "^0.0.7", "zod": "^3.23.8" }, "peerDependencies": { "@tscircuit/soup": "*" } }, "sha512-aLUuh3LqeDusjTzp6nyOqss6Et4adTVeCGJpvvq3dosuyfdk5L79l64jdNFK0Bf5fps1SJAHISpPC4nDSJEVfw=="],
|
|
@@ -2614,10 +2623,18 @@
|
|
|
2614
2623
|
|
|
2615
2624
|
"@tscircuit/pcb-viewer/circuit-to-svg/schematic-symbols": ["schematic-symbols@0.0.17", "", { "peerDependencies": { "typescript": "^5.5.4" } }, "sha512-xs/A1MNFZphcYRpTQVWm1OUA4bvWhw9LViKSTxEe0nQEbbfZgMS7hCt+DF6SYDgT8cec9hD4JAQMHh5Cz4om1Q=="],
|
|
2616
2625
|
|
|
2617
|
-
"@tscircuit/runframe/@tscircuit/3d-viewer/@tscircuit/core": ["@tscircuit/core@0.0.355", "", { "dependencies": { "@lume/kiwi": "^0.4.3", "@tscircuit/capacity-autorouter": "^0.0.36", "@tscircuit/infgrid-ijump-astar": "^0.0.33", "@tscircuit/math-utils": "^0.0.9", "@tscircuit/props": "^0.0.163", "@tscircuit/schematic-autolayout": "^0.0.6", "@tscircuit/soup-util": "^0.0.41", "circuit-json": "^0.0.153", "circuit-json-to-connectivity-map": "^0.0.17", "format-si-unit": "^0.0.3", "nanoid": "^5.0.7", "performance-now": "^2.1.0", "react-reconciler": "^0.31.0", "react-reconciler-18": "npm:react-reconciler@0.29.2", "schematic-symbols": "^0.0.121", "transformation-matrix": "^2.16.1", "zod": "^3.23.8" }, "peerDependencies": { "@tscircuit/footprinter": "*", "typescript": "^5.0.0" } }, "sha512-Fbt75Gd3J6y3j7vcfs6l0aBFB3Oy7CpCDxIxpKTc9HGqhglwRW60g7tRO2GvfGLLrmAqO0Y9HavsdJZTRdf1yA=="],
|
|
2618
|
-
|
|
2619
2626
|
"@tscircuit/runframe/@tscircuit/3d-viewer/jscad-electronics": ["jscad-electronics@0.0.27", "", { "dependencies": { "@tscircuit/footprinter": "^0.0.132", "circuit-json": "^0.0.92" } }, "sha512-oczsbRWTRxkHfXcmyCVHuBa2ZWVGFJbrjWKR4Xhz4+4DxRk1+qG2hceAFZjYe1jTa57Yg3uct1naG+96tHo/zw=="],
|
|
2620
2627
|
|
|
2628
|
+
"@tscircuit/runframe/@tscircuit/3d-viewer/jscad-fiber": ["jscad-fiber@0.0.79", "", { "dependencies": { "color": "^4.2.3", "lucide-react": "^0.456.0", "react-code-blocks": "^0.1.6", "react-reconciler": "^0.29.2" }, "peerDependencies": { "@jscad/modeling": "*", "@react-three/fiber": "*", "react": "*", "three": "*" } }, "sha512-pSj1vwBxKxW0c7xnE82nElPecKUfUMR/Gl2SHRPIqaibPvn4wxu+Pp0sB6KDLnB1nmnKa4F2queRdGDN9AeZxw=="],
|
|
2629
|
+
|
|
2630
|
+
"@tscircuit/runframe/@tscircuit/core/@tscircuit/capacity-autorouter": ["@tscircuit/capacity-autorouter@0.0.49", "", { "peerDependencies": { "typescript": "^5.7.3" } }, "sha512-QX3g7+w+4ucGHIyPv63gC479Ho46XSLS+OmLxxM6QGndEayr29s70gBmWkm2am5b+V4i+MENwYMNOajVHmtwXA=="],
|
|
2631
|
+
|
|
2632
|
+
"@tscircuit/runframe/@tscircuit/core/@tscircuit/math-utils": ["@tscircuit/math-utils@0.0.12", "", { "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-pYk39tdEdgyaoT2kHd+1QKVVfztOKVn+BoyxTH9HREWaPsf3C90VkY2blRUKS26VcEzvcbxKlURW0JGkUgqlOg=="],
|
|
2633
|
+
|
|
2634
|
+
"@tscircuit/runframe/@tscircuit/core/circuit-json": ["circuit-json@0.0.153", "", { "dependencies": { "nanoid": "^5.0.7", "zod": "^3.23.6" } }, "sha512-gRjXgFOZam7yhVhXtwNa5YxFF4syd2hB/gIndEsuuwuy6YjDRSAhZk93oeiDY9+V81RuiBUYK11jahDn+dDEsQ=="],
|
|
2635
|
+
|
|
2636
|
+
"@tscircuit/runframe/@tscircuit/core/schematic-symbols": ["schematic-symbols@0.0.121", "", { "peerDependencies": { "typescript": "^5.5.4" } }, "sha512-xqWY43VC10wIVL+Kf8PlHj27Ojr7JdFeFHTRoSvmc6zvHirPQiXlnb3l70BerZQy6S/EOH+Q9yGRADYU0m8T1w=="],
|
|
2637
|
+
|
|
2621
2638
|
"@tscircuit/runframe/circuit-to-svg/@tscircuit/footprinter": ["@tscircuit/footprinter@0.0.91", "", { "dependencies": { "@tscircuit/mm": "^0.0.8", "zod": "^3.23.8" }, "peerDependencies": { "@tscircuit/soup": "*", "circuit-json": "*" } }, "sha512-6H3CYXNPJlIcT9BLpeC8I18RdsmolkEWAt2ih4RgT3MwTEjNxmJOr6alppXvGUXdw0zu/QOwAOF/NxAUqlxBFQ=="],
|
|
2622
2639
|
|
|
2623
2640
|
"@tscircuit/schematic-viewer/@tscircuit/core/@tscircuit/math-utils": ["@tscircuit/math-utils@0.0.9", "", { "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-sPzfXndijet8z29X6f5vnSZddiso2tRg7m6rB+268bVj60mxnxUMD14rKuMlLn6n84fMOpD/X7pRTZUfi6M+Tg=="],
|
|
@@ -2874,20 +2891,16 @@
|
|
|
2874
2891
|
|
|
2875
2892
|
"@tscircuit/file-server/winterspec/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.19.12", "", { "os": "win32", "cpu": "x64" }, "sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA=="],
|
|
2876
2893
|
|
|
2877
|
-
"@tscircuit/pcb-viewer/@tscircuit/core/circuit-json-to-connectivity-map/@tscircuit/math-utils": ["@tscircuit/math-utils@0.0.4", "", { "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-8Bu/C+go95Zk9AXb4Pe37OgObGhOd5F7UIzXV+u1PKuhpJpGjr+X/WHBzSI7xHrBSvwsf39/Luooe4b3djuzgQ=="],
|
|
2878
|
-
|
|
2879
2894
|
"@tscircuit/pcb-viewer/circuit-to-svg/@tscircuit/footprinter/@tscircuit/mm": ["@tscircuit/mm@0.0.7", "", { "dependencies": { "convert-units": "^2.3.4" }, "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-5lZjeOsrkQDnMd4OEuXQYC8k+zuWCbX9Ruq69JhcvLu18FUen3pPjBxmFyF2DGZYxaTrKUpUdZvoTr49TISN2g=="],
|
|
2880
2895
|
|
|
2881
|
-
"@tscircuit/runframe/@tscircuit/3d-viewer/@tscircuit/core/@tscircuit/math-utils": ["@tscircuit/math-utils@0.0.9", "", { "peerDependencies": { "typescript": "^5.0.0" } }, "sha512-sPzfXndijet8z29X6f5vnSZddiso2tRg7m6rB+268bVj60mxnxUMD14rKuMlLn6n84fMOpD/X7pRTZUfi6M+Tg=="],
|
|
2882
|
-
|
|
2883
|
-
"@tscircuit/runframe/@tscircuit/3d-viewer/@tscircuit/core/circuit-json": ["circuit-json@0.0.153", "", { "dependencies": { "nanoid": "^5.0.7", "zod": "^3.23.6" } }, "sha512-gRjXgFOZam7yhVhXtwNa5YxFF4syd2hB/gIndEsuuwuy6YjDRSAhZk93oeiDY9+V81RuiBUYK11jahDn+dDEsQ=="],
|
|
2884
|
-
|
|
2885
|
-
"@tscircuit/runframe/@tscircuit/3d-viewer/@tscircuit/core/schematic-symbols": ["schematic-symbols@0.0.121", "", { "peerDependencies": { "typescript": "^5.5.4" } }, "sha512-xqWY43VC10wIVL+Kf8PlHj27Ojr7JdFeFHTRoSvmc6zvHirPQiXlnb3l70BerZQy6S/EOH+Q9yGRADYU0m8T1w=="],
|
|
2886
|
-
|
|
2887
2896
|
"@tscircuit/runframe/@tscircuit/3d-viewer/jscad-electronics/@tscircuit/footprinter": ["@tscircuit/footprinter@0.0.132", "", { "dependencies": { "@tscircuit/mm": "^0.0.8", "zod": "^3.23.8" }, "peerDependencies": { "circuit-json": "*" } }, "sha512-pXSl6VXHbx5w0QNwUs2v3bO7xVaaCbuLZ9q4jZZru78JHmzc/PTvaNZQYsm7OGskh8BkfaOrkRJPI3H2L0x88A=="],
|
|
2888
2897
|
|
|
2889
2898
|
"@tscircuit/runframe/@tscircuit/3d-viewer/jscad-electronics/circuit-json": ["circuit-json@0.0.92", "", { "dependencies": { "nanoid": "^5.0.7", "zod": "^3.23.6" } }, "sha512-cEqFxLadAxS+tm7y5/llS4FtqN3QbzjBNubely7vFo8w05sZnGRCcLzZwKL7rC7He1CqqyFynD4MdeL+F/PjBQ=="],
|
|
2890
2899
|
|
|
2900
|
+
"@tscircuit/runframe/@tscircuit/3d-viewer/jscad-fiber/lucide-react": ["lucide-react@0.456.0", "", { "peerDependencies": { "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc" } }, "sha512-DIIGJqTT5X05sbAsQ+OhA8OtJYyD4NsEMCA/HQW/Y6ToPQ7gwbtujIoeAaup4HpHzV35SQOarKAWH8LYglB6eA=="],
|
|
2901
|
+
|
|
2902
|
+
"@tscircuit/runframe/@tscircuit/3d-viewer/jscad-fiber/react-reconciler": ["react-reconciler@0.29.2", "", { "dependencies": { "loose-envify": "^1.1.0", "scheduler": "^0.23.2" }, "peerDependencies": { "react": "^18.3.1" } }, "sha512-zZQqIiYgDCTP/f1N/mAR10nJGrPD2ZR+jDSEsKWJHYC7Cm2wodlwbR3upZRdC3cjIjSlTLNVyO7Iu0Yy7t2AYg=="],
|
|
2903
|
+
|
|
2891
2904
|
"@vercel/nft/glob/minimatch/brace-expansion": ["brace-expansion@1.1.11", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="],
|
|
2892
2905
|
|
|
2893
2906
|
"looks-same/sharp/tar-fs/tar-stream": ["tar-stream@3.1.7", "", { "dependencies": { "b4a": "^1.6.4", "fast-fifo": "^1.2.0", "streamx": "^2.15.0" } }, "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ=="],
|