@tscircuit/common 0.0.1
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 +21 -0
- package/README.md +13 -0
- package/dist/index.js +2785 -0
- package/dist/index.mjs +2785 -0
- package/package.json +28 -0
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tscircuit/common",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist"
|
|
7
|
+
],
|
|
8
|
+
"keywords": [
|
|
9
|
+
"tscircuit"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"dev": "tsci dev",
|
|
13
|
+
"build": "npm run build:lib",
|
|
14
|
+
"build:lib": "tsup --dts --format esm ./index.tsx",
|
|
15
|
+
"build:circuit": "tsci build",
|
|
16
|
+
"snapshot": "tsci snapshot",
|
|
17
|
+
"snapshot:update": "tsci snapshot --update --3d",
|
|
18
|
+
"start": "tsci dev",
|
|
19
|
+
"format": "biome format --write",
|
|
20
|
+
"format:check": "biome format"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@biomejs/biome": "^2.2.4",
|
|
24
|
+
"@types/react": "^19.1.12",
|
|
25
|
+
"tscircuit": "^0.0.660",
|
|
26
|
+
"tsup": "^8.5.0"
|
|
27
|
+
}
|
|
28
|
+
}
|