@alchemy.run/sigil 0.0.0-alpha.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/package.json ADDED
@@ -0,0 +1,98 @@
1
+ {
2
+ "name": "@alchemy.run/sigil",
3
+ "version": "0.0.0-alpha.1",
4
+ "description": "React for CLIs. A self-contained fork of Ink with an integrated TypeScript Yoga layout engine.",
5
+ "keywords": [
6
+ "cli",
7
+ "colors",
8
+ "command-line",
9
+ "components",
10
+ "jsx",
11
+ "preact",
12
+ "print",
13
+ "react",
14
+ "redux",
15
+ "render",
16
+ "stdout",
17
+ "text"
18
+ ],
19
+ "license": "MIT",
20
+ "author": {
21
+ "name": "BlankParticle",
22
+ "email": "blank@alchemy.run",
23
+ "url": "https://blankparticle.com"
24
+ },
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "alchemy-run/sigil"
28
+ },
29
+ "files": [
30
+ "dist",
31
+ "THIRD_PARTY_NOTICES.md"
32
+ ],
33
+ "type": "module",
34
+ "exports": {
35
+ "types": "./dist/index.d.mts",
36
+ "default": "./dist/index.mjs"
37
+ },
38
+ "publishConfig": {
39
+ "access": "public"
40
+ },
41
+ "dependencies": {
42
+ "react-reconciler": "^0.33.0",
43
+ "scheduler": "^0.27.0"
44
+ },
45
+ "devDependencies": {
46
+ "@types/node": "^25.5.2",
47
+ "@types/react": "^19.2.14",
48
+ "@types/react-reconciler": "^0.33.0",
49
+ "@types/scheduler": "^0.26.0",
50
+ "@types/ws": "^8.18.1",
51
+ "boxen": "^8.0.1",
52
+ "node-pty": "^1.2.0-beta.12",
53
+ "react": "^19.2.4",
54
+ "react-devtools-core": "^7.0.1",
55
+ "react-router": "^7.14.0",
56
+ "tsx": "^4.21.0",
57
+ "typescript": "^7.0.2",
58
+ "vite-plus": "^0.2.9",
59
+ "vitest": "4.1.10",
60
+ "ws": "^8.20.0"
61
+ },
62
+ "peerDependencies": {
63
+ "@types/react": ">=19.2.0",
64
+ "react": ">=19.2.0",
65
+ "react-devtools-core": ">=6.1.2",
66
+ "ws": ">=8.20.0"
67
+ },
68
+ "peerDependenciesMeta": {
69
+ "@types/react": {
70
+ "optional": true
71
+ },
72
+ "react-devtools-core": {
73
+ "optional": true
74
+ },
75
+ "ws": {
76
+ "optional": true
77
+ }
78
+ },
79
+ "engines": {
80
+ "node": ">=22"
81
+ },
82
+ "scripts": {
83
+ "dev": "vp pack -w",
84
+ "build": "vp pack",
85
+ "test": "vp test",
86
+ "lint": "vp lint",
87
+ "format": "vp fmt .",
88
+ "check": "vp check",
89
+ "typecheck": "tsc --noEmit",
90
+ "example": "NODE_NO_WARNINGS=1 node --import=tsx",
91
+ "benchmark": "NODE_NO_WARNINGS=1 node --import=tsx",
92
+ "inspect": "vp dlx react-devtools",
93
+ "build:reference": "NODE_NO_WARNINGS=1 node --import=tsx scripts/build-reference.ts",
94
+ "fuzz": "NODE_NO_WARNINGS=1 node --import=tsx test/yoga/fuzz/typescript.ts",
95
+ "fuzz:differential": "vp run build:reference && NODE_NO_WARNINGS=1 node --import=tsx test/yoga/fuzz/differential.ts",
96
+ "fuzz:loop": "vp run build:reference && NODE_NO_WARNINGS=1 node --import=tsx test/yoga/fuzz/loop.ts"
97
+ }
98
+ }