-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.29 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.29 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
{
"name": "cursor-rule-framework",
"version": "1.2.1",
"description": "Professional Cursor AI Rule Framework for 'Vibe Coding' - Co-Built by Engineers & AI, for Engineers & AI",
"main": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/fbrbovic/cursor-rule-framework.git"
},
"keywords": [
"cursor",
"cursor-ai",
"ai-development",
"rules",
"framework",
"development",
"automation",
"vibe-coding",
"ai-assistant",
"productivity",
"workflow",
"epic-planning",
"architecture",
"pair-programming"
],
"author": {
"name": "fbrbovic",
"url": "https://github.com/fbrbovic"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fbrbovic/cursor-rule-framework/issues"
},
"homepage": "https://github.com/fbrbovic/cursor-rule-framework#readme",
"engines": {
"node": ">=16.0.0"
},
"files": [
".cursor/",
"docs/",
"examples/",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md"
],
"scripts": {
"release": "npm run release:patch",
"release:patch": "npm version patch && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:major": "npm version major && git push --follow-tags",
"release:prerelease": "npm version prerelease && git push --follow-tags",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "npm run changelog && git add CHANGELOG.md",
"validate": "npm run validate:rules && npm run validate:docs",
"validate:rules": "node scripts/validate-rules.js",
"validate:docs": "node scripts/validate-docs.js",
"test": "echo \"No tests specified yet\" && exit 0",
"lint": "echo \"No linting configured yet\" && exit 0",
"format": "echo \"No formatting configured yet\" && exit 0"
},
"devDependencies": {
"conventional-changelog-cli": "^4.1.0",
"semver": "^7.5.4",
"js-yaml": "^4.1.0"
},
"publishConfig": {
"access": "public"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/fbrbovic"
},
"directories": {
"doc": "docs",
"example": "examples"
},
"config": {
"release": {
"conventional-commits": true,
"generate-changelog": true
}
}
}