-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.87 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.87 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
{
"name": "ai-rules-cli",
"version": "1.1.0",
"description": "CLI for managing Cursor AI rules with dependency resolution and conflict detection",
"main": "dist/index.js",
"bin": {
"ai-rules": "./dist/index.js"
},
"scripts": {
"clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true });\"",
"build": "npm run clean && tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prepublishOnly": "npm run build",
"prepack": "npm run build",
"publish:script": "./scripts/publish.sh",
"prepublish": "npm run build && chmod +x dist/index.js"
},
"keywords": [
"cursor",
"ai",
"rules",
"cli",
"typescript"
],
"author": "rerades<rerades@siete3.com>",
"license": "MIT",
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"boxen": "^7.1.1",
"build": "^0.1.4",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"crocks": "^0.12.4",
"fs-extra": "^11.1.1",
"gray-matter": "^4.0.3",
"inquirer": "^9.2.12",
"ora": "^7.0.1",
"run": "^1.5.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.55.0",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"mdc.schema.json",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/rerades/ai-rules-cli.git"
},
"homepage": "https://github.com/rerades/ai-rules-cli#readme",
"bugs": {
"url": "https://github.com/rerades/ai-rules-cli/issues"
}
}