forked from jlongster/tigma
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 742 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 742 Bytes
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
{
"name": "tigma",
"version": "1.0.4",
"description": "A terminal-based design tool",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"tigma": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bun build ./index.ts --outdir ./dist --target bun && echo '#!/usr/bin/env bun' | cat - ./dist/index.js > ./dist/temp && mv ./dist/temp ./dist/index.js && chmod +x ./dist/index.js",
"prepublishOnly": "bun run build"
},
"keywords": [
"terminal",
"cli",
"design",
"tui"
],
"author": "",
"license": "MIT",
"dependencies": {
"@opentui/core": "^0.1.61"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5"
}
}