-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.65 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
{
"name": "openeditorcode",
"version": "0.2.14",
"description": "Editor de proyectos para la terminal, escrito con Bun y OpenTUI.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/2jmalvarez/openeditorcode.git"
},
"bugs": {
"url": "https://github.com/2jmalvarez/openeditorcode/issues"
},
"homepage": "https://github.com/2jmalvarez/openeditorcode#readme",
"files": [
"bin/",
"docs/",
"man/",
"README.md",
"LICENSE"
],
"man": [
"man/oec.1",
"man/openeditorcode.1"
],
"type": "module",
"bin": {
"oec": "bin/oec.js",
"openeditorcode": "bin/oec.js"
},
"optionalDependencies": {
"@2jmalvarez/oec-linux-x64": "0.2.14",
"@2jmalvarez/oec-win32-x64": "0.2.14"
},
"scripts": {
"dev": "bun --preload @opentui/solid/preload ./src/index.tsx",
"start": "bun --preload @opentui/solid/preload ./src/index.tsx",
"test": "bun test --preload @opentui/solid/preload",
"test:coverage": "bun test --preload @opentui/solid/preload --coverage",
"typecheck": "bun x tsc --noEmit",
"build": "bun run build.ts",
"build:linux": "bun run build.ts linux-x64",
"build:windows": "bun run build.ts win32-x64",
"preflight": "bun run scripts/release-preflight.ts",
"pack:check": "bun run scripts/package-check.ts",
"smoke:check": "bun run scripts/executable-smoke.ts",
"smoke:tui": "bun run scripts/tui-smoke.ts"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@opentui/core": "^0.5.1",
"@opentui/solid": "^0.5.1",
"@types/bun": "1.3.14",
"ignore": "^7.0.5",
"solid-js": "^1.9.9",
"typescript": "^5.8.3"
}
}