create-agent-config 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,112 @@
1
+ {
2
+ "name": "create-agent-config",
3
+ "version": "1.0.0",
4
+ "description": "Scaffold AI agent config files for any project. One command, every tool.",
5
+ "type": "module",
6
+ "bin": {
7
+ "create-agent-config": "./dist/index.js"
8
+ },
9
+ "exports": {
10
+ ".": {
11
+ "import": {
12
+ "types": "./dist/index.d.ts",
13
+ "default": "./dist/index.js"
14
+ },
15
+ "require": {
16
+ "types": "./dist/index.d.cts",
17
+ "default": "./dist/index.cjs"
18
+ }
19
+ }
20
+ },
21
+ "main": "./dist/index.cjs",
22
+ "module": "./dist/index.js",
23
+ "types": "./dist/index.d.ts",
24
+ "files": [
25
+ "dist"
26
+ ],
27
+ "scripts": {
28
+ "build": "tsup",
29
+ "typecheck": "tsc --noEmit",
30
+ "test": "vitest run",
31
+ "test:watch": "vitest",
32
+ "test:coverage": "vitest run --coverage",
33
+ "lint": "eslint . && prettier --check .",
34
+ "format": "prettier --write .",
35
+ "prepare": "husky"
36
+ },
37
+ "lint-staged": {
38
+ "*.{ts,js}": [
39
+ "eslint --fix",
40
+ "prettier --write"
41
+ ],
42
+ "*.{json,md,yml,yaml}": [
43
+ "prettier --write"
44
+ ]
45
+ },
46
+ "release": {
47
+ "branches": [
48
+ "main"
49
+ ],
50
+ "plugins": [
51
+ "@semantic-release/commit-analyzer",
52
+ "@semantic-release/release-notes-generator",
53
+ "@semantic-release/changelog",
54
+ "@semantic-release/npm",
55
+ "@semantic-release/github",
56
+ [
57
+ "@semantic-release/git",
58
+ {
59
+ "assets": [
60
+ "CHANGELOG.md",
61
+ "package.json"
62
+ ],
63
+ "message": "chore(release): ${nextRelease.version} [skip ci]"
64
+ }
65
+ ]
66
+ ]
67
+ },
68
+ "keywords": [
69
+ "agent-config",
70
+ "agents-md",
71
+ "claude-md",
72
+ "cursor-rules",
73
+ "cursorrules",
74
+ "copilot-instructions",
75
+ "windsurf",
76
+ "ai-agent",
77
+ "scaffolding",
78
+ "generator",
79
+ "create",
80
+ "ai-context",
81
+ "coding-agent",
82
+ "claude-code",
83
+ "ai-rules",
84
+ "cline",
85
+ "vibe-coding"
86
+ ],
87
+ "author": "Ofer Shapira <ofer@ofershap.dev>",
88
+ "license": "MIT",
89
+ "repository": {
90
+ "type": "git",
91
+ "url": "https://github.com/ofershap/create-agent-config.git"
92
+ },
93
+ "bugs": {
94
+ "url": "https://github.com/ofershap/create-agent-config/issues"
95
+ },
96
+ "homepage": "https://github.com/ofershap/create-agent-config#readme",
97
+ "devDependencies": {
98
+ "@eslint/js": "^10.0.1",
99
+ "@semantic-release/changelog": "^6.0.3",
100
+ "@semantic-release/git": "^10.0.1",
101
+ "@types/node": "^25.3.3",
102
+ "eslint": "^10.0.2",
103
+ "husky": "^9.1.7",
104
+ "lint-staged": "^16.3.2",
105
+ "prettier": "^3.5.3",
106
+ "semantic-release": "^25.0.3",
107
+ "tsup": "^8.4.0",
108
+ "typescript": "^5.7.3",
109
+ "typescript-eslint": "^8.25.0",
110
+ "vitest": "^4.0.18"
111
+ }
112
+ }