-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.06 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@orchetron/storm",
"version": "0.2.0",
"description": "Storm — Compositor-based terminal UI framework. Fast. Layered. Unstoppable.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./components": {
"types": "./dist/components/index.d.ts",
"import": "./dist/components/index.js",
"default": "./dist/components/index.js"
},
"./hooks": {
"types": "./dist/hooks/index.d.ts",
"import": "./dist/hooks/index.js",
"default": "./dist/hooks/index.js"
},
"./widgets": {
"types": "./dist/widgets/index.d.ts",
"import": "./dist/widgets/index.js",
"default": "./dist/widgets/index.js"
},
"./templates": {
"types": "./dist/templates/index.d.ts",
"import": "./dist/templates/index.js",
"default": "./dist/templates/index.js"
},
"./testing": {
"types": "./dist/testing/index.d.ts",
"import": "./dist/testing/index.js",
"default": "./dist/testing/index.js"
},
"./devtools": {
"types": "./dist/devtools/index.d.ts",
"import": "./dist/devtools/index.js",
"default": "./dist/devtools/index.js"
},
"./headless": {
"types": "./dist/hooks/headless/index.d.ts",
"import": "./dist/hooks/headless/index.js",
"default": "./dist/hooks/headless/index.js"
},
"./ssh": {
"types": "./dist/ssh/index.d.ts",
"import": "./dist/ssh/index.js",
"default": "./dist/ssh/index.js"
}
},
"files": [
"dist",
"!dist/__tests__",
"bin",
"wasm/pkg",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"tui",
"terminal",
"cli",
"react",
"ui",
"components",
"hooks",
"devtools",
"ai",
"agent",
"typescript"
],
"author": "Orchetron",
"repository": {
"type": "git",
"url": "https://github.com/orchetron/storm"
},
"homepage": "https://github.com/orchetron/storm",
"bugs": {
"url": "https://github.com/orchetron/storm/issues"
},
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:bench": "vitest run --config vitest.config.ts src/__tests__/benchmarks.test.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"playground": "cd playground && npm install --silent 2>/dev/null && node server.mjs"
},
"dependencies": {
"react-reconciler": "^0.31.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"ssh2": "^1.17.0"
},
"peerDependenciesMeta": {
"ssh2": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.19.33",
"@types/react": "^19.0.0",
"@types/ssh2": "^1.15.5",
"chafa-wasm": "^0.3.3",
"react": "^19.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"publishConfig": {
"access": "public"
}
}