-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.36 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.36 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
{
"name": "create-tui",
"version": "0.0.11",
"description": "CLI tool for creating OpenTUI projects from templates",
"type": "module",
"sideEffects": false,
"bin": {
"create-tui": "dist/bin.js"
},
"scripts": {
"build": "bunchee --minify --sourcemap=false",
"postbuild": "bun run scripts/post-build.ts",
"dev": "bun run src/bin/create-tui.ts",
"prepublishOnly": "bun run build"
},
"keywords": [
"cli",
"template",
"opentui",
"scaffold",
"generator",
"create-app"
],
"author": "Matt Simpson",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/msmps/create-tui.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/msmps/create-tui/issues"
},
"homepage": "https://github.com/msmps/create-tui#readme",
"dependencies": {
"@effect/cli": "^0.73.0",
"@effect/platform": "^0.94.0",
"@effect/platform-node": "^0.104.0",
"@effect/printer": "^0.47.0",
"@effect/printer-ansi": "^0.47.0",
"effect": "^3.19.13",
"semver": "^7.7.3",
"tar": "^7.5.2"
},
"devDependencies": {
"@effect/language-service": "^0.62.4",
"@types/bun": "latest",
"@types/semver": "^7.7.1",
"bunchee": "^6.6.2"
},
"peerDependencies": {
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
}
}