ai-dot 0.1.0-alpha.1

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,71 @@
1
+ {
2
+ "name": "ai-dot",
3
+ "version": "0.1.0-alpha.1",
4
+ "description": "Configure once, generate for all AI coding tools",
5
+ "type": "module",
6
+ "bin": {
7
+ "ai-dot": "./dist/cli.js"
8
+ },
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.cjs"
13
+ }
14
+ },
15
+ "main": "./dist/index.cjs",
16
+ "module": "./dist/index.js",
17
+ "types": "./dist/index.d.ts",
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "scripts": {
22
+ "dev": "tsx src/cli.ts",
23
+ "build": "tsup",
24
+ "lint": "biome check src tests",
25
+ "lint:fix": "biome check --write src tests",
26
+ "format": "biome format --write src tests",
27
+ "test": "vitest run",
28
+ "test:watch": "vitest",
29
+ "start": "tsx src/cli.ts",
30
+ "prepublishOnly": "npm run build",
31
+ "typecheck": "tsc --noEmit",
32
+ "sync-docs": "bash scripts/sync-docs.sh",
33
+ "docs:dev": "pnpm -C docs-site dev",
34
+ "docs:build": "pnpm -C docs-site build",
35
+ "docs:preview": "pnpm -C docs-site preview"
36
+ },
37
+ "packageManager": "pnpm@10.12.4",
38
+ "workspaces": ["docs-site"],
39
+ "keywords": [
40
+ "ai",
41
+ "cli",
42
+ "claude",
43
+ "cursor",
44
+ "codex",
45
+ "copilot",
46
+ "config",
47
+ "developer-tools"
48
+ ],
49
+ "repository": {
50
+ "type": "git",
51
+ "url": "https://github.com/THATBLADEBOY/ai-dot"
52
+ },
53
+ "license": "MIT",
54
+ "engines": {
55
+ "node": ">=18"
56
+ },
57
+ "devDependencies": {
58
+ "@biomejs/biome": "^2.4.4",
59
+ "@types/node": "^25.3.0",
60
+ "tsup": "^8.5.1",
61
+ "tsx": "^4.21.0",
62
+ "typescript": "^5.9.3",
63
+ "vitest": "^4.0.18"
64
+ },
65
+ "dependencies": {
66
+ "@clack/prompts": "^1.0.1",
67
+ "commander": "^14.0.3",
68
+ "smol-toml": "^1.6.0",
69
+ "yaml": "^2.8.2"
70
+ }
71
+ }