-
-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.36 KB
/
package.json
File metadata and controls
63 lines (63 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
59
60
61
62
63
{
"name": "@clack/jsx",
"version": "1.0.0-alpha.1",
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./jsx-runtime": "./jsx-runtime.js",
"./jsx-dev-runtime": "./jsx-runtime.js",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"repository": {
"type": "git",
"url": "git+https://github.com/bombshell-dev/clack.git",
"directory": "packages/jsx"
},
"bugs": {
"url": "https://github.com/bombshell-dev/clack/issues"
},
"homepage": "https://github.com/bombshell-dev/clack/tree/main/packages/jsx#readme",
"files": ["dist", "CHANGELOG.md"],
"keywords": [
"ask",
"clack",
"cli",
"command-line",
"command",
"input",
"interact",
"interface",
"menu",
"prompt",
"prompts",
"stdin",
"ui",
"jsx",
"ink"
],
"author": {
"name": "James Garbutt",
"url": "https://github.com/43081j"
},
"license": "MIT",
"packageManager": "pnpm@9.14.2",
"scripts": {
"build": "unbuild",
"prepack": "pnpm build",
"test": "vitest run"
},
"dependencies": {
"@clack/prompts": "workspace:*"
},
"devDependencies": {
"vitest": "^3.1.1",
"vitest-ansi-serializer": "^0.1.2",
"@clack/test-utils": "workspace:*"
}
}