-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.4 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
{
"name": "@socketaddon/opentui",
"version": "1.0.0-pre.0",
"description": "Node.js bindings for OpenTUI - a Zig-based terminal UI library with flexbox layout",
"license": "MIT",
"type": "module",
"main": "./index.mjs",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.mjs"
},
"./react": {
"default": "./react.mjs"
}
},
"files": [
"LICENSE",
"README.md",
"index.d.ts",
"index.mjs",
"react.mjs",
"render-engine.mjs",
"yoga-sync.cjs"
],
"optionalDependencies": {
"@socketaddon/opentui-darwin-arm64": "1.0.0-pre.0",
"@socketaddon/opentui-darwin-x64": "1.0.0-pre.0",
"@socketaddon/opentui-linux-arm64": "1.0.0-pre.0",
"@socketaddon/opentui-linux-arm64-musl": "1.0.0-pre.0",
"@socketaddon/opentui-linux-x64": "1.0.0-pre.0",
"@socketaddon/opentui-linux-x64-musl": "1.0.0-pre.0",
"@socketaddon/opentui-win-arm64": "1.0.0-pre.0",
"@socketaddon/opentui-win-x64": "1.0.0-pre.0"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SocketDev/socket-cli.git"
},
"author": {
"name": "Socket Inc",
"email": "eng@socket.dev",
"url": "https://socket.dev"
},
"homepage": "https://github.com/SocketDev/socket-cli",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}