-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.48 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.48 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
{
"name": "@qazuor/claude-code-config",
"version": "0.6.5",
"description": "CLI tool to install and manage Claude Code configurations",
"type": "module",
"bin": {
"qazuor-claude-config": "./dist/bin.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"templates"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"start": "node dist/bin.js",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build && pnpm test:coverage",
"ci": "pnpm lint && pnpm typecheck && pnpm test:coverage",
"release": "dotenv release-it",
"release:patch": "dotenv release-it patch",
"release:minor": "dotenv release-it minor",
"release:major": "dotenv release-it major",
"release:dry": "dotenv release-it --dry-run"
},
"dependencies": {
"@inquirer/core": "^11.0.2",
"@inquirer/prompts": "^7.2.0",
"@inquirer/type": "^4.0.2",
"chalk": "^5.6.2",
"commander": "^12.1.0",
"figlet": "^1.9.4",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"ora": "^8.1.1",
"picocolors": "^1.1.1",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@release-it/conventional-changelog": "^10.0.3",
"@types/figlet": "^1.7.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"dotenv-cli": "^11.0.0",
"memfs": "^4.14.1",
"release-it": "^19.1.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18"
},
"keywords": [
"claude",
"claude-code",
"cli",
"config",
"ai",
"assistant",
"anthropic"
],
"author": "Leandro Asrilevich <qazuor@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/qazuor/claude-code-config.git"
},
"bugs": {
"url": "https://github.com/qazuor/claude-code-config/issues"
},
"homepage": "https://github.com/qazuor/claude-code-config#readme",
"private": false
}