-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.79 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.79 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": "@codifycli/ink-form",
"type": "module",
"version": "0.0.11",
"description": "Complex user-friendly form component for Codify",
"main": "lib/index.js",
"exports": "./lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"react",
"cli",
"ui",
"component",
"input",
"forms",
"reusable",
"ink",
"commandline",
"cmd"
],
"repository": "https://github.com/codifyCLI/codify-ink-form",
"author": "Lukas Bach <lbach@outlook.de> modified by Kevin Wang",
"devDependencies": {
"@types/node": "20.14.8",
"@types/react": "^18.2.41",
"ink": "^5.1.0",
"prettier": "^2.2.1",
"publish-fast": "^0.0.20",
"react": "^18.2.0",
"tsx": "^4.19.2",
"typedoc": "^0.25.4",
"typescript": "^5.3.2",
"react-devtools-core": "4.28.5"
},
"scripts": {
"start": "ts-node-esm src/demo/overview.tsx",
"demo:overview": "tsx src/demo/overview.tsx",
"demo:counter": "tsx src/demo/counter.tsx",
"demo:codify": "tsx src/demo/codify.tsx",
"demo:packagejson": "tsx src/demo/packagejson.tsx",
"demo:custommanager": "tsx src/demo/custommanager.tsx",
"demo:imperative": "tsx src/demo/imperative.ts",
"build": "tsc",
"build:docs": "typedoc --out docs src/index.ts",
"lint": "prettier --check .",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"release": "publish-fast",
"prepublishOnly": "tsc"
},
"peerDependencies": {
"ink": ">=5",
"react": ">=18"
},
"dependencies": {
"ink-select-input": "^6.0.0",
"ink-text-input": "^6.0.0"
},
"publishConfig": {
"access": "restricted",
"registry": "https://npm.pkg.github.com"
},
"publish": {
"preScripts": "build,build:docs,lint",
"releaseNotesSource": "next-releasenotes.md"
}
}