-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.31 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.31 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
{
"name": "react-curse",
"version": "1.0.23",
"description": "Fastest terminal UI for react (TUI, CLI, curses-like)",
"keywords": [
"ansi",
"ascii",
"blessed",
"cli",
"console",
"cursed",
"curses",
"ncurses",
"gui",
"ncurses",
"ranger",
"react",
"renderer",
"term",
"terminal",
"tmux",
"tui",
"unicode",
"vim",
"xterm"
],
"author": {
"name": "Oleksandr Vasyliev",
"email": "infely@gmail.com",
"url": "https://github.com/infely"
},
"repository": "infely/react-curse",
"homepage": "https://github.com/infely/react-curse",
"main": "index.ts",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "bun run --watch examples/Example.tsx",
"build": "NODE_ENV=production bun build --minify --target=node ${npm_config_src:=examples/Example.tsx} > .dist/index.js",
"lint": "tsc --noEmit",
"esbuild:start": "npx esbuild ${npm_config_src:=examples/Example.tsx} --outfile=.dist/index.js --bundle --platform=node --format=esm --external:'./node_modules/*' --sourcemap && node --enable-source-maps .dist",
"npm": "npx esbuild index.ts --outdir=.npm --bundle --platform=node --format=esm --packages=external",
"postnpm": "tsc --emitDeclarationOnly --declaration --jsx react-jsx --target esnext --esModuleInterop --moduleResolution node index.ts --outdir .npm && bin/postnpm.js",
"create": "npx esbuild create/Create.tsx --outfile=.create/index.js --bundle --platform=node --define:'process.env.NODE_ENV=\"production\"' --minify --tree-shaking=true",
"postcreate": "bin/postcreate.js",
"esbuild:dist": "npx esbuild ${npm_config_src:=examples/Example.tsx} --outfile=.dist/index.cjs --bundle --platform=node --define:'process.env.NODE_ENV=\"production\"' --minify --tree-shaking=true",
"logger": "bin/logger.js"
},
"dependencies": {
"react": "^19.1.1",
"react-reconciler": "^0.32.0"
},
"devDependencies": {
"esbuild": "^0.25.9",
"@eslint/js": "^9.34.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^24.3.0",
"@types/react": "^19.1.11",
"@types/react-reconciler": "^0.32.0",
"eslint": "^9.34.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0"
}
}