-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.26 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.26 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
{
"name": "omo-switch-cli",
"version": "0.2.3",
"description": "CLI tool for managing oh-my-opencode profiles",
"main": "dist/index.js",
"bin": {
"omo-switch": "dist/index.js",
"omos": "dist/index.js"
},
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"cli",
"omo",
"opencode",
"oh-my-opencode",
"config-manager",
"omo-switch"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Poorgramer-Zack/omo-switch.git"
},
"bugs": {
"url": "https://github.com/Poorgramer-Zack/omo-switch/issues"
},
"homepage": "https://github.com/Poorgramer-Zack/omo-switch#readme",
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"json5": "^2.2.3",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^4.0.17",
"memfs": "^4.56.9",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vitest": "^4.0.17"
}
}