-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 4.24 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 4.24 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "clavix",
"version": "7.3.0",
"description": "Agentic-first prompt workflows. Markdown templates that teach AI agents how to optimize prompts, create PRDs, and manage implementation.\n\nSLASH COMMANDS (in your AI assistant):\n /clavix:improve Optimize prompts with auto-depth\n /clavix:prd Generate PRD through questions\n /clavix:plan Create task breakdown from PRD\n /clavix:implement Execute tasks with progress tracking\n /clavix:start Begin conversational session\n /clavix:summarize Extract requirements from conversation\n /clavix:refine Refine existing PRD or prompt\n /clavix:verify Verify implementation against requirements\n /clavix:review Review teammate PRs with criteria\n /clavix:archive Archive completed projects\n\nWorks with Claude Code, Cursor, Windsurf, and 20 AI coding tools.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"clavix": "bin/clavix.js"
},
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"clean": "rm -rf dist",
"validate:consistency": "tsx scripts/validate-consistency.ts",
"prebuild": "npm run clean && npm run validate:consistency",
"build": "tsc && npm run copy-templates",
"build:prod": "npm run build && npm run remove-sourcemaps",
"copy-templates": "rm -rf dist/templates && copyfiles -u 1 \"src/templates/**/*\" dist/ && copyfiles -u 1 \"src/config/**/*\" dist/",
"remove-sourcemaps": "find dist -name '*.map' -type f -delete",
"dev": "node --loader ts-node/esm src/index.ts",
"test": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest",
"test:watch": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --watch",
"test:coverage": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --coverage",
"test:changed": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --changedSince=HEAD~1 --passWithNoTests",
"test:parity": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest tests/consistency/cli-template-parity.test.ts",
"test:consistency": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest tests/consistency/",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"prepare": "husky",
"prepublishOnly": "npm run validate:consistency && npm run build:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ClavixDev/Clavix.git"
},
"keywords": [
"cli",
"ai",
"prompt",
"prompt-optimization",
"prompt-structuring",
"intent-detection",
"quality-assessment",
"prd",
"claude",
"claude-code",
"cursor",
"windsurf",
"developer-tools",
"prompt-engineering",
"ai-coding-tools",
"requirements",
"workflow"
],
"author": "ClavixDev",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ClavixDev/Clavix/issues"
},
"homepage": "https://clavix.dev/",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@oclif/core": "^4.8.0",
"@oclif/plugin-help": "^6.2.35",
"chalk": "^5.6.2",
"clavix": "^5.9.2",
"fs-extra": "^11.3.2",
"inquirer": "^12.11.1",
"zod": "^3.24.4"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@oclif/test": "^4.1.15",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"copyfiles": "^2.4.1",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.7",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4"
},
"oclif": {
"bin": "clavix",
"dirname": "clavix",
"commands": "./dist/cli/commands",
"topicSeparator": " ",
"plugins": [
"@oclif/plugin-help"
]
},
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}