-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.1 KB
/
package.json
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
{
"name": "crrl",
"version": "1.0.12",
"description": "CLI tool to fetch and save .cursorrules files",
"main": "dist/index.js",
"bin": {
"crrl": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"release": "ts-node release.ts"
},
"keywords": [
"cursor",
"cursor-ai",
"cursorrules",
"cursor-rules",
"cursor-rules-cli",
"cursor-rules-cli-tool"
],
"homepage": "https://github.com/Qwertic/crrl",
"repository": {
"type": "git",
"url": "https://github.com/Qwertic/crrl.git"
},
"maintainers": [
{
"name": "Qwertic",
"email": "[email protected]"
}
],
"author": "Qwertic",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.0.0",
"@types/node-fetch": "^2.6.11",
"ts-node": "^10.9.2",
"typescript": "^5.0.4"
},
"dependencies": {
"@inquirer/prompts": "^5.5.0",
"commander": "^12.1.0",
"node-fetch": "2",
"ora": "5"
},
"engines": {
"node": ">=18.0.0"
}
}