-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.19 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.19 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "open-code-cli",
"version": "0.2.1",
"description": "`open-code-cli` is a simple and efficient tool that enables you to quickly create command-line applications using TypeScript. With its well-structured codebase and robust features, it provides an easy-to-use interface for developing and testing your CLI applications. It also comes with a set of predefined tools that allow you to quickly create a basic structure for your CLI application, which can be customized according to your needs. Additionally, it provides a simple way to add dependencies and plugins to your CLI app, making it ideal for developers who want to use third-party libraries and extend the functionality of their CLI apps.",
"bin": {
"open-code-cli": "./bin/run"
},
"directories": {
"lib": "src",
"bin": "bin"
},
"files": [
"dist",
"bin"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/teurons/open-code-cli.git"
},
"scripts": {
"build": "tsup-node",
"build:watch": "tsup-node --watch",
"clean": "rimraf dist",
"commit": "cz",
"commitlint": "commitlint --edit",
"compile": "tsc",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "ts-node ./bin/run.ts",
"start:node": "node ./bin/run",
"test": "jest",
"test:watch": "jest --watchAll",
"prepare": "husky",
"release": "semantic-release"
},
"keywords": [
"typescript",
"starter",
"cli",
"bootstrap"
],
"author": "Rajiv S <rajiv@betalectic.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.24.0",
"@jest/globals": "^29.7.0",
"@tsconfig/node20": "^20.1.5",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.0",
"@types/prompts": "^2.4.9",
"@types/signale": "^1.4.7",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.3",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@ai-sdk/openai": "^1.3.21",
"@antfu/ni": "^24.3.0",
"@openrouter/ai-sdk-provider": "^0.4.5",
"ai": "^4.3.13",
"axios": "^1.9.0",
"consola": "^3.4.2",
"dotenv": "^16.5.0",
"giget": "^2.0.0",
"openrouter-kit": "^0.1.60",
"picocolors": "^1.1.1",
"yargs": "^17.7.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
],
"overrides": {
"brace-expansion@>=1.0.0 <=1.1.11": ">=1.1.12",
"brace-expansion@>=2.0.0 <=2.0.1": ">=2.0.2"
}
}
}