-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.95 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.95 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
{
"name": "cursorifier",
"version": "0.1.6",
"description": "Transform GitHub repositories into cursor rules instructions using multiple LLM providers (Anthropic, OpenAI, Ollama, etc.)",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"cursorifier": "./bin/cursorifier.cjs"
},
"type": "module",
"files": [
"lib/**/*",
"bin/**/*",
"src/prompts/**/*"
],
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.json --sourceMap --declaration",
"lint": "eslint src --ext .ts",
"test": "echo 'No tests yet' && exit 0",
"prepublishOnly": "npm run lint && npm run build",
"version:patch": "node scripts/version-bump.js patch",
"version:minor": "node scripts/version-bump.js minor",
"version:major": "node scripts/version-bump.js major",
"version:prerelease": "node scripts/version-bump.js prerelease"
},
"keywords": [
"cursor",
"rules",
"ai",
"github",
"repository",
"llm",
"claude",
"openai",
"ollama",
"local-llm",
"cursor-rules",
"cursorifier"
],
"author": "niklub",
"homepage": "https://github.com/rainmana/cursorifier",
"bugs": {
"url": "https://github.com/rainmana/cursorifier/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rainmana/cursorifier.git"
},
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.20.0",
"@aws-sdk/client-bedrock": "^3.893.0",
"@aws-sdk/client-bedrock-runtime": "^3.893.0",
"commander": "^13.1.0",
"js-tiktoken": "^1.0.19",
"openai": "^4.28.0",
"picocolors": "^1.1.0",
"repomix": "^0.3.1"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"eslint": "^8.56.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"vitest": "^3.1.1"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}